Skip to content
This repository was archived by the owner on Dec 10, 2022. It is now read-only.

Commit 098f733

Browse files
committed
missing getters
1 parent 2416389 commit 098f733

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

zenload/zCProgMeshProto.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@ namespace ZenLoad
8888
/**
8989
* @return BBox min/max
9090
*/
91-
ZMath::float3 getBBoxMin() { return m_BBMin; }
92-
ZMath::float3 getBBoxMax() { return m_BBMax; }
91+
ZMath::float3 getBBoxMin() const { return m_BBMin; }
92+
ZMath::float3 getBBoxMax() const { return m_BBMax; }
93+
94+
bool isAlphaTested() const { return m_IsUsingAlphaTest!=0; }
9395

9496
private:
9597
/**

0 commit comments

Comments
 (0)