Separated langpack, concept art for inventory UI

Former-commit-id: 7a98df93b4ef50b47283abcd99576d6fbefc9cc5
Former-commit-id: db6e34417ccf84e59ba68547f30459cb4b188eb7
This commit is contained in:
Song Minjae
2016-07-04 23:08:16 +09:00
parent 2ed435165a
commit 2e46df67a8
91 changed files with 70088 additions and 720 deletions

View File

@@ -27,12 +27,11 @@ class TileProp {
/**
* @param luminosity Raw RGB value, without alpha
*/
private var realLum: Int = 0
var luminosity: Int
var luminosity: Int = 0
set(value) {
realLum = value
field = value
}
get() = TilePropUtil.getDynamicLumFunc(realLum, dynamicLuminosityFunction)
get() = TilePropUtil.getDynamicLumFunc(field, dynamicLuminosityFunction)
var drop: Int = 0
var dropDamage: Int = 0