ソースを参照

removed calc.getText() out of Textbox.lua

tags/v0.0.6_dev
Niro 2年前
コミット
0813681c19
2個のファイルの変更2行の追加2行の削除
  1. +1
    -1
      main.lua
  2. +1
    -1
      src/class/Textbox.lua

+ 1
- 1
main.lua ファイルの表示

@@ -34,7 +34,7 @@ function love.load()

-- Textboxes:
textbox = {
tutorial = Textbox(40, 40, width-80, height-80, text.tutorial, "center", {255, 255, 255}, {0, 0, 0})
tutorial = Textbox(40, 40, width-80, height-80, getText(text.tutorial), "center", {255, 255, 255}, {0, 0, 0})
}




+ 1
- 1
src/class/Textbox.lua ファイルの表示

@@ -8,7 +8,7 @@ function Textbox:init(tempX, tempY, tempW, tempH, tempText, tempAlign, tempTC, t
self.h = tempH

-- Text:
self.text = calc.getText(tempText)
self.text = tempText
self.align = tempAlign

-- Colours:


読み込み中…
キャンセル
保存