GameObj.update - HermesPasser/Ramu GitHub Wiki

virtual GameObj.update()

Description

Will be called once per frame, add the GameObj logic here.

You can test this snippet of code here.

class NewObj extends GameObj{
   update(){
      // logic here
  }
}

See also GameObj.start.