MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / write_store_global

Method write_store_global

modules/gdscript/gdscript_byte_codegen.cpp:1034–1038  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1032}
1033
1034void 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
1040void GDScriptByteCodeGenerator::write_store_named_global(const Address &p_dst, const StringName &p_global) {
1041 append_opcode(GDScriptFunction::OPCODE_STORE_NAMED_GLOBAL);

Callers 1

_parse_expressionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected