tweaked framerate

This commit is contained in:
2023-03-05 19:40:18 +11:00
parent 7f7e5a56c9
commit f42ee8b655
5 changed files with 14 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ import standard;
import node;
//constants
var SPEED: int const = 2;
var SPEED: int const = 4;
var SPRITE_WIDTH: int const = 64;
var SPRITE_HEIGHT: int const = 64;
@@ -98,7 +98,7 @@ fn onInit(node: opaque) {
}
fn onStep(node: opaque) {
if (++stepCount >= 10) {
if (++stepCount >= 5) {
node.incrementCurrentNodeFrame();
stepCount = 0;
}