소스 검색

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:


불러오는 중...
취소
저장