Browse Source

pgraph: Make `bounds_type` property writable

rdb 3 years ago
parent
commit
cd984732b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pgraph/pandaNode.h

+ 1 - 1
panda/src/pgraph/pandaNode.h

@@ -290,7 +290,7 @@ PUBLISHED:
   // bounding volumes.
   // bounding volumes.
   void set_bounds_type(BoundingVolume::BoundsType bounds_type);
   void set_bounds_type(BoundingVolume::BoundsType bounds_type);
   BoundingVolume::BoundsType get_bounds_type() const;
   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_bounds(const BoundingVolume *volume);
   void set_bound(const BoundingVolume *volume);
   void set_bound(const BoundingVolume *volume);