UNPKG

@phaserjs/phaser

Version:
9 lines (8 loc) 312 B
import { DirtyComponent } from "./DirtyComponent"; import { GameObjectWorld } from "../../GameObjectWorld"; import { SetDirtyColor } from "./SetDirtyColor"; import { addComponent } from "bitecs"; export function AddDirtyComponent(id) { addComponent(GameObjectWorld, DirtyComponent, id); SetDirtyColor(id); }