diff options
author | reduz <juan@okamstudio.com> | 2015-10-16 19:11:23 -0300 |
---|---|---|
committer | reduz <juan@okamstudio.com> | 2015-10-16 19:11:23 -0300 |
commit | 078a474135b47adb3cbdf414c737b77ee17fe596 (patch) | |
tree | b496b103491830f4e9339b9f25bd71f4dfdef184 /scene/main/instance_placeholder.h | |
parent | 6b20ee4324224d926a3eb43a59068c2cf12dc75e (diff) | |
download | redot-engine-078a474135b47adb3cbdf414c737b77ee17fe596.tar.gz |
-fixes and more fixes to new scene system, seems stable now..
BUT DONT TRUST ME IT MAY STILL BREAK, USE WITH CARE!!
Diffstat (limited to 'scene/main/instance_placeholder.h')
-rw-r--r-- | scene/main/instance_placeholder.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/scene/main/instance_placeholder.h b/scene/main/instance_placeholder.h new file mode 100644 index 0000000000..e9e76e7a2d --- /dev/null +++ b/scene/main/instance_placeholder.h @@ -0,0 +1,37 @@ +#ifndef INSTANCE_PLACEHOLDER_H +#define INSTANCE_PLACEHOLDER_H + +#include "scene/main/node.h" + +class PackedScene; + +class InstancePlaceholder : public Node { + + OBJ_TYPE(InstancePlaceholder,Node); + + String path; + struct PropSet { + StringName name; + Variant value; + }; + + List<PropSet> stored_values; + +protected: + bool _set(const StringName& p_name, const Variant& p_value); + bool _get(const StringName& p_name,Variant &r_ret) const; + void _get_property_list( List<PropertyInfo> *p_list) const; + + static void _bind_methods(); + +public: + + void set_path(const String& p_name); + String get_path() const; + + void replace_by_instance(const Ref<PackedScene>& p_custom_scene=Ref<PackedScene>()); + + InstancePlaceholder(); +}; + +#endif // INSTANCE_PLACEHOLDER_H |