forked from endernon/PGRData
33 lines
No EOL
1.2 KiB
Lua
33 lines
No EOL
1.2 KiB
Lua
local XRpgMakerGameObject = require("XEntity/XRpgMakerGame/Object/XRpgMakerGameObject")
|
|
|
|
local type = type
|
|
local pairs = pairs
|
|
local Vector3 = CS.UnityEngine.Vector3
|
|
|
|
---传送对象
|
|
---@class XRpgMakerGameTrasfer:XRpgMakerGameObject
|
|
local XRpgMakerGameTrasfer = XClass(XRpgMakerGameObject, "XRpgMakerGameTrasfer")
|
|
|
|
---@param mapObjData XMapObjectData
|
|
function XRpgMakerGameTrasfer:InitDataByMapObjData(mapObjData)
|
|
self.MapObjData = mapObjData
|
|
self:UpdatePosition({PositionX = self.MapObjData:GetX(), PositionY = self.MapObjData:GetY()})
|
|
end
|
|
|
|
--播放传送失败特效
|
|
function XRpgMakerGameTrasfer:PlayTransFailEffect()
|
|
-- local color = XRpgMakerGameConfigs.GetTransferPointColor(self:GetId())
|
|
local color = self.MapObjData:GetParams()[1]
|
|
local key = XRpgMakerGameConfigs.GetTransferPointColorKey(color)
|
|
local modelPath = XRpgMakerGameConfigs.GetRpgMakerGameModelPath(key)
|
|
self:LoadModel(modelPath, nil, nil, key)
|
|
XSoundManager.PlaySoundByType(XSoundManager.UiBasicsMusic.RpgMakerGame_TransferFail, XSoundManager.SoundType.Sound)
|
|
end
|
|
|
|
function XRpgMakerGameTrasfer:OnLoadComplete()
|
|
self:SetActive(false)
|
|
self:SetActive(true)
|
|
XRpgMakerGameTrasfer.Super.OnLoadComplete(self)
|
|
end
|
|
|
|
return XRpgMakerGameTrasfer |