summaryrefslogtreecommitdiff
path: root/gfx/include/gfx/scene/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/include/gfx/scene/object.h')
-rw-r--r--gfx/include/gfx/scene/object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gfx/include/gfx/scene/object.h b/gfx/include/gfx/scene/object.h
index 891c3cd..7579d29 100644
--- a/gfx/include/gfx/scene/object.h
+++ b/gfx/include/gfx/scene/object.h
@@ -29,6 +29,10 @@ void gfx_destroy_object(SceneObject**);
29/// Set the object's skeleton. 29/// Set the object's skeleton.
30void gfx_set_object_skeleton(SceneObject*, const Skeleton*); 30void gfx_set_object_skeleton(SceneObject*, const Skeleton*);
31 31
32/// Get the object's skeleton.
33/// Return null if the object has no skeleton.
34const Skeleton* gfx_get_object_skeleton(const SceneObject*);
35
32/// Gets the object's bounding box. 36/// Gets the object's bounding box.
33/// 37///
34/// The object's bounding box is the bounding box of its mesh geometries. 38/// The object's bounding box is the bounding box of its mesh geometries.