aboutsummaryrefslogtreecommitdiff
path: root/core/core_string_names.h
diff options
context:
space:
mode:
authorJuan Linietsky2017-09-23 21:05:35 -0300
committerJuan Linietsky2017-09-23 21:05:35 -0300
commit3c857033df954b481fb6ba9545b074588b1aee02 (patch)
tree21f91ebfd68fbed0c37a025a3a7742190f6a1b0f /core/core_string_names.h
parentd3ea92257dc48dece18ae142fa2739601b711137 (diff)
downloadgodot-3c857033df954b481fb6ba9545b074588b1aee02.tar.gz
godot-3c857033df954b481fb6ba9545b074588b1aee02.tar.zst
godot-3c857033df954b481fb6ba9545b074588b1aee02.zip
Diffstat (limited to 'core/core_string_names.h')
-rw-r--r--core/core_string_names.h27
1 files changed, 25 insertions, 2 deletions
diff --git a/core/core_string_names.h b/core/core_string_names.h
index 2eb2b703a..6fcc77316 100644
--- a/core/core_string_names.h
+++ b/core/core_string_names.h
@@ -37,8 +37,6 @@ class CoreStringNames {
friend void register_core_types();
friend void unregister_core_types();
- static CoreStringNames *singleton;
-
static void create() { singleton = memnew(CoreStringNames); }
static void free() {
memdelete(singleton);
@@ -50,6 +48,8 @@ class CoreStringNames {
public:
_FORCE_INLINE_ static CoreStringNames *get_singleton() { return singleton; }
+ static CoreStringNames *singleton;
+
StringName _free;
StringName changed;
StringName _meta;
@@ -65,6 +65,29 @@ public:
StringName _sections_unfolded;
#endif
StringName _custom_features;
+
+ StringName x;
+ StringName y;
+ StringName z;
+ StringName w;
+ StringName r;
+ StringName g;
+ StringName b;
+ StringName a;
+ StringName position;
+ StringName size;
+ StringName end;
+ StringName basis;
+ StringName origin;
+ StringName normal;
+ StringName d;
+ StringName h;
+ StringName s;
+ StringName v;
+ StringName r8;
+ StringName g8;
+ StringName b8;
+ StringName a8;
};
#endif // SCENE_STRING_NAMES_H