summaryrefslogtreecommitdiffstats
path: root/include/core/Transform.hpp
diff options
context:
space:
mode:
authorMarc <marc.gilleron@gmail.com>2021-01-31 20:06:56 +0000
committerGitHub <noreply@github.com>2021-01-31 20:06:56 +0000
commitb400dba87534640eeddbcdb6b319335a6a7639d8 (patch)
tree286a8e2e25c18fe11f346835b3021afae2e9b77f /include/core/Transform.hpp
parentfb71edd45b2473bf0ac502c777a1850fb564087e (diff)
parent05ba977cc60653952b73dc03498ebc7a93cef120 (diff)
downloadredot-cpp-b400dba87534640eeddbcdb6b319335a6a7639d8.tar.gz
Merge branch 'master' into container_leaks
Diffstat (limited to 'include/core/Transform.hpp')
-rw-r--r--include/core/Transform.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/core/Transform.hpp b/include/core/Transform.hpp
index 9da6366..836792c 100644
--- a/include/core/Transform.hpp
+++ b/include/core/Transform.hpp
@@ -10,6 +10,11 @@ namespace godot {
class Transform {
public:
+ static const Transform IDENTITY;
+ static const Transform FLIP_X;
+ static const Transform FLIP_Y;
+ static const Transform FLIP_Z;
+
Basis basis;
Vector3 origin;