1000줄 코드 쓰기 미니게임(4)
2949 단어 Lua
--
function MineSecretDialog:updateUserMoney(addMoney, isInit)
addMoney = addMoney or 0
isInit = isInit or false
if addMoney ~= 0 or isInit then
userData.money = math.max(0, userData.money + addMoney)
AddLabel( "$ "..userData.money, ccp(posX2 + 151, posY - gap), self.m_bgKuang, Tag.MoneyLabel, ColorList[2], ccp(0, 0.5) )
end
end
-- , ,
function MineSecretDialog:updateUserKey(addIronKey, addSilverKey, addGoldKey, isInit)
addIronKey = addIronKey or 0
addSilverKey = addSilverKey or 0
addGoldKey = addGoldKey or 0
isInit = isInit or false
if addIronKey ~= 0 or isInit then
userData.ironKey = math.min(BarMaxNum.KEY, math.max(0, userData.ironKey + addIronKey))
AddLabel( userData.ironKey, ccp(posX2 + 163, posY - gap * 2), self.m_bgKuang, Tag.IronKeyLabel, H_Font_Gray_Stroke_10, ccp(0.5, 0.5) )
end
if addSilverKey ~= 0 or isInit then
userData.silverKey = math.min(BarMaxNum.KEY, math.max(0, userData.silverKey + addSilverKey))
AddLabel( userData.silverKey, ccp(posX2 + 190, posY - gap * 2), self.m_bgKuang, Tag.SilverKeyLabel, H_Font_Gray_Stroke_10, ccp(0.5, 0.5) )
end
if addGoldKey ~= 0 or isInit then
userData.goldKey = math.min(BarMaxNum.KEY, math.max(0, userData.goldKey + addGoldKey))
AddLabel( userData.goldKey, ccp(posX2 + 217, posY - gap * 2), self.m_bgKuang, Tag.GoldKeyLabel, H_Font_Gray_Stroke_10, ccp(0.5, 0.5) )
end
end
--
function MineSecretDialog:updateUserCollection(collectLetter, addNum, isInit)
addNum = addNum or 1
isInit = isInit or false
local count = 0
if collectLetter ~= nil then
for i=1,#(userData.collection) do
if userData.collection[i].letter == collectLetter then
userData.collection[i].num = math.min(BarMaxNum.COLLECT, userData.collection[i].num + addNum)
local color = H_Font_WhiteSmall
if userData.collection[i].num > 0 then color = ColorList[i] end
AddLabel( userData.collection[i].letter, ccp(15 + (i-1)*20, posY - gap * 2), self.m_bgKuang, Tag.CollectionLabel+i, color, ccp(0.5, 0.5) )
end
if userData.collection[i].num > 0 then count = count + 1 end
end
if count == #(userData.collection) then
-- TODO: ,
for i=1,#(userData.collection) do
userData.collection[i].num = userData.collection[i].num - 1
end
isInit = true
end
end
if isInit then
for i=1,#(userData.collection) do
local color = H_Font_WhiteSmall
if userData.collection[i].num > 0 then color = ColorList[i] end
AddLabel( userData.collection[i].letter, ccp(15 + (i-1)*20, posY - gap * 2), self.m_bgKuang, Tag.CollectionLabel+i, color, ccp(0.5, 0.5) )
end
end
end
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Lua 카운트다운 도구최근에 Lua가 카운트다운에 사용하는 작은 도구를 쓰고 있는데 대략적인 내용을 공유합니다. 사실 전체적인 사고방식은 매우 간단하다. 바로 시간 스탬프를 필요한 격식으로 바꾸어 시간을 재는 것이다.그러나 계산 정밀도가...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.