
Originally Posted by
someguynamedpie
Although I have one question, would it be possible to make a gpu-only game? Using the cursor position as input? That's my only request for gpu is to detect use inputs on the gpu. Otherwise, I think you would just have to roll over buttons.
Yes its possible to make a GPU-only game. But typically you have to use external devices to control things instead.
Also, we have these events for the DENTRYPOINT opcode:
Code:
0 DRAW
This entrypoint is called when screen is redrawn
2 USE
This entrypoint is called when screen is used by someone
3 ERROR
This is called instead of DRAW if rendering error occurred But they are not functional.
Bookmarks