Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-04 | ZVISION: Optimize integer type usages | richiesams | |
The general thought is int is faster than int16 or byte. So if you can afford the space, use it over int16 or byte. Also, only use int32 when you specifically need the 32 bits. | |||
2013-08-04 | ZVISION: Make ActionNode::process() pure virtual | richiesams | |
2013-08-04 | ZVISION: Add ActionNode class | richiesams | |
This class encases actions that happen over time (timer, animations, etc) Each frame, the engine calls process() on each active ActionNode |