| 1032 | } |
| 1033 | |
| 1034 | void GDScriptByteCodeGenerator::write_store_global(const Address &p_dst, int p_global_index) { |
| 1035 | append_opcode(GDScriptFunction::OPCODE_STORE_GLOBAL); |
| 1036 | append(p_dst); |
| 1037 | append(p_global_index); |
| 1038 | } |
| 1039 | |
| 1040 | void GDScriptByteCodeGenerator::write_store_named_global(const Address &p_dst, const StringName &p_global) { |
| 1041 | append_opcode(GDScriptFunction::OPCODE_STORE_NAMED_GLOBAL); |