Files
Airport/assets/scripts/gameplay/text.toy

11 lines
229 B
Plaintext

import node;
//this is a child of the step counter, which simply renders text
fn customOnDraw(node: opaque, parentX: int, parentY: int) {
node.drawNode(parentX, parentY);
}
fn onFree(node: opaque) {
node.freeNodeTexture();
}