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

Method get_constants

modules/gdscript/gdscript.cpp:924–930  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

922}
923
924void GDScript::get_constants(HashMap<StringName, Variant> *p_constants) {
925 if (p_constants) {
926 for (const KeyValue<StringName, Variant> &E : constants) {
927 (*p_constants)[E.key] = E.value;
928 }
929 }
930}
931
932void GDScript::get_members(HashSet<StringName> *p_members) {
933 if (p_members) {

Callers 6

_lookup_symbol_from_baseFunction · 0.45
_update_cacheMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected