Newer
Older
kotlin-webgl-test / lib / kotludens / com / persesgames / text / Texts.kt
rnentjes on 16 May 2016 411 bytes Draw test
package com.persesgames.text

import com.persesgames.game.Game

/**
 * Created by rnentjes on 16-5-16.
 */

object Texts {

    fun drawText(x: Float, y: Float, message: String, font: String = "bold 24pt Arial", fillStyle: String = "white") {
        Game.html.canvas2d.fillStyle = fillStyle
        Game.html.canvas2d.font = font
        Game.html.canvas2d.fillText(message, x.toDouble(), y.toDouble())
    }
}