Slick wireframes when antialised

Former-commit-id: ff43e4904ace96db4915e9684c07f0ef53d91634
Former-commit-id: 2397086bc1157242df81cdc0d3fb3cfaa5a02f79
This commit is contained in:
Song Minjae
2016-12-10 01:19:44 +09:00
parent a89bcff2bd
commit 5c75d75e7a
8 changed files with 11 additions and 25 deletions

View File

@@ -162,10 +162,10 @@ object WeatherMixer {
val skybox: Image
val extraImages = ArrayList<Image>()
val classification = JSON.get("classification").asJsonPrimitive.asString
val mixFrom: String?
var mixFrom: String?
try { mixFrom = JSON.get("mixFrom").asJsonPrimitive.asString }
catch (e: NullPointerException) { mixFrom = null }
val mixPercentage: Double?
var mixPercentage: Double?
try { mixPercentage = JSON.get("mixPercentage").asJsonPrimitive.asDouble }
catch (e: NullPointerException) { mixPercentage = null }