summaryrefslogtreecommitdiffstats
path: root/scene/3d/multimesh_instance.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/3d/multimesh_instance.h')
-rw-r--r--scene/3d/multimesh_instance.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/scene/3d/multimesh_instance.h b/scene/3d/multimesh_instance.h
index 535e4275a3..4a0edb563c 100644
--- a/scene/3d/multimesh_instance.h
+++ b/scene/3d/multimesh_instance.h
@@ -37,21 +37,18 @@
*/
class MultiMeshInstance : public GeometryInstance {
- GDCLASS( MultiMeshInstance, GeometryInstance );
-
+ GDCLASS(MultiMeshInstance, GeometryInstance);
Ref<MultiMesh> multimesh;
-protected:
-
+protected:
static void _bind_methods();
// bind helpers
public:
-
virtual PoolVector<Face3> get_faces(uint32_t p_usage_flags) const;
- void set_multimesh(const Ref<MultiMesh>& p_multimesh);
+ void set_multimesh(const Ref<MultiMesh> &p_multimesh);
Ref<MultiMesh> get_multimesh() const;
virtual Rect3 get_aabb() const;
@@ -61,4 +58,3 @@ public:
};
#endif // MULTIMESH_INSTANCE_H
-