From cd984732b76238c24acb3f872e1231148aaaa43c Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 10 Dec 2022 19:38:11 +0100 Subject: [PATCH] pgraph: Make `bounds_type` property writable --- panda/src/pgraph/pandaNode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pgraph/pandaNode.h b/panda/src/pgraph/pandaNode.h index 325b5ea508..83b34e709d 100644 --- a/panda/src/pgraph/pandaNode.h +++ b/panda/src/pgraph/pandaNode.h @@ -290,7 +290,7 @@ PUBLISHED: // bounding volumes. void set_bounds_type(BoundingVolume::BoundsType bounds_type); BoundingVolume::BoundsType get_bounds_type() const; - MAKE_PROPERTY(bounds_type, get_bounds_type); + MAKE_PROPERTY(bounds_type, get_bounds_type, set_bounds_type); void set_bounds(const BoundingVolume *volume); void set_bound(const BoundingVolume *volume);