diching RGB10; colors are now fully vec3

This commit is contained in:
minjaesong
2017-07-09 02:21:24 +09:00
parent b3a355f51d
commit c96fb5e017
23 changed files with 299 additions and 282 deletions

View File

@@ -72,6 +72,10 @@ open class KVHashMap {
return value as Double
}
fun getAsFloat(key: String): Float? {
return getAsDouble(key)?.toFloat()
}
fun getAsString(key: String): String? {
val value = get(key)