You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class MovementSystem extends System
{
var entitySet:EntitySet;
public override function init()
entitySet = em.getEntitySet([CPosition, CMonster]);
public override function loop()
{
entitySet.applyChanges(); // **what changes at this point?**
for(entity in entitySet.entities)
{
var pos = entity.get(CPosition);
pos.x += 0.1;
net.markChanged(entity, pos, entitySet);
}
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: