diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2025-04-16 00:09:31 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-15 14:09:31 -0700 |
| commit | b5e932c493742411fdcef695be5879b729d115c8 (patch) | |
| tree | 0a6c2e25be2ded3e5b539d0be4834b19c12a43b1 /include/JSystem/J3DGraphBase | |
| parent | 59ff71c355015c7ed2ffadf96371db67c1b1d0b5 (diff) | |
A Little j3d work (#2396)
Diffstat (limited to 'include/JSystem/J3DGraphBase')
| -rw-r--r-- | include/JSystem/J3DGraphBase/J3DVertex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/JSystem/J3DGraphBase/J3DVertex.h b/include/JSystem/J3DGraphBase/J3DVertex.h index ccc247c0dd..c6def61e96 100644 --- a/include/JSystem/J3DGraphBase/J3DVertex.h +++ b/include/JSystem/J3DGraphBase/J3DVertex.h @@ -102,7 +102,7 @@ public: void* getTransformedVtxPos(int idx) { return mTransformedVtxPosArray[idx]; } void* getTransformedVtxNrm(int idx) { return mTransformedVtxNrmArray[idx]; } - J3DVertexData* getVertexData() { return mVtxData; } + J3DVertexData* getVertexData() const { return mVtxData; } void swapTransformedVtxPos() { void* tmp = mTransformedVtxPosArray[0]; |
