1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

-Fixes to OBJ importer, option to disable optimization

-Fixes to script language, PlaceHolder can now get and check methods
This commit is contained in:
Juan Linietsky
2018-06-30 19:58:37 -03:00
parent 3852c5f8a0
commit b3627e29f0
5 changed files with 44 additions and 8 deletions

View File

@@ -13,6 +13,7 @@ public:
bool use_in_game;
Color color;
bool first;
bool zero_y;
Transform accumulated;
@@ -33,6 +34,9 @@ public:
void set_radius(float p_radius);
float get_radius() const;
void set_zero_y(bool p_zero_y);
bool get_zero_y() const;
virtual AABB get_aabb() const;
virtual PoolVector<Face3> get_faces(uint32_t p_usage_flags) const;