03F0
Jump to navigation
Jump to search
- Description
- Use text commands
- Syntax
- 03F0: enable_text_draw [int]
- Parameter
- [int]
- 0 = don't use text commands, 1 = use text commands
This opcode allows the display and removal of all intro text displayed using opcodes such as 033E. Just before displaying text of that type, switch on this opcode and then perform whatever task you want with the text. After you are done displaying text, you switch off this opcode.
Examples
The following example using Sanny Builder demonstrates a standard usage of this opcode along with a display text opcode in a loop. Press button 13 (CAMERA key) to end the counter on the screen.
const COUNT_NUMBER = 0@ end 03F0: enable_text_draw 1 while true wait 10 if 00E1: player 0 pressed_button 13 // camera key then 03F0: enable_text_draw 0 break end COUNT_NUMBER += 1 045A: text_draw_1number 10.0 10.0 'NUMBER' COUNT_NUMBER end
The following is an alternative non-standard way to display text.
const COUNT_NUMBER = 0@ end while true wait 10 if 00E1: player 0 pressed_button 13 // camera key then break end COUNT_NUMBER += 1 045A: text_draw_1number 10.0 10.0 'NUMBER' COUNT_NUMBER 03F0: enable_text_draw 0 end
Keywords
use, enable, text, draw, commands