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

Method Array

core/variant/array.cpp:873–878  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

871}
872
873Array::Array(const Array &p_from, uint32_t p_type, const StringName &p_class_name, const Variant &p_script) {
874 _p = memnew(ArrayPrivate);
875 _p->refcount.init();
876 set_typed(p_type, p_class_name, p_script);
877 assign(p_from);
878}
879
880void Array::set_typed(const ContainerType &p_element_type) {
881 set_typed(p_element_type.builtin_type, p_element_type.class_name, p_element_type.script);

Callers 15

_setupMethod · 0.45
add_variantMethod · 0.45
subtract_variantMethod · 0.45
blend_variantMethod · 0.45
interpolate_variantMethod · 0.45
_update_cachesMethod · 0.45
_blend_processMethod · 0.45
_blend_applyMethod · 0.45
_get_travel_pathMethod · 0.45

Calls 1

initMethod · 0.45

Tested by

no test coverage detected