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

Method write_get_member

modules/gdscript/gdscript_byte_codegen.cpp:896–900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

894}
895
896void GDScriptByteCodeGenerator::write_get_member(const Address &p_target, const StringName &p_name) {
897 append_opcode(GDScriptFunction::OPCODE_GET_MEMBER);
898 append(p_target);
899 append(p_name);
900}
901
902void GDScriptByteCodeGenerator::write_set_static_variable(const Address &p_value, const Address &p_class, int p_index) {
903 append_opcode(GDScriptFunction::OPCODE_SET_STATIC_VARIABLE);

Callers 1

_parse_expressionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected