Forráskód Böngészése

Fix element access operator of aiColor4D

Jeongseok Lee 6 éve
szülő
commit
bcd17481e5
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      include/assimp/color4.inl

+ 4 - 0
include/assimp/color4.inl

@@ -85,6 +85,8 @@ AI_FORCE_INLINE TReal aiColor4t<TReal>::operator[](unsigned int i) const {
             return g;
         case 2:
             return b;
+        case 3:
+            return a;
         default:
             break;
     }
@@ -100,6 +102,8 @@ AI_FORCE_INLINE TReal& aiColor4t<TReal>::operator[](unsigned int i) {
             return g;
         case 2:
             return b;
+        case 3:
+            return a;
         default:
             break;
     }