52 lines
1.2 KiB
Lua
52 lines
1.2 KiB
Lua
|
---@class BP_SmallBunker_C:BP_PlaceItemBase_C
|
||
|
---@field Box5 UBoxComponent
|
||
|
---@field Box7 UBoxComponent
|
||
|
---@field Box6 UBoxComponent
|
||
|
---@field Box4 UBoxComponent
|
||
|
---@field Box3 UBoxComponent
|
||
|
---@field Box2 UBoxComponent
|
||
|
---@field Box1 UBoxComponent
|
||
|
---@field Box UBoxComponent
|
||
|
---@field AssistPlacement USceneComponent
|
||
|
---@field StaticMesh UStaticMeshComponent
|
||
|
--Edit Below--
|
||
|
local PlaceItemBase = require("Script.Blueprint.PlaceItems.BP_PlaceItemBase")
|
||
|
local BP_SmallBunker = setmetatable(
|
||
|
{
|
||
|
},
|
||
|
{
|
||
|
__index = PlaceItemBase,
|
||
|
__metatable = PlaceItemBase
|
||
|
}
|
||
|
)
|
||
|
|
||
|
function BP_SmallBunker:ReceiveBeginPlay()
|
||
|
self.SuperClass.ReceiveBeginPlay(self);
|
||
|
PlaceItemBase.ParentBeginPlay(self)
|
||
|
self:AddSetMobilityComponent(self.StaticMesh)
|
||
|
end
|
||
|
|
||
|
function BP_SmallBunker:ReceiveEndPlay()
|
||
|
PlaceItemBase.ParentEndPlay(self)
|
||
|
self.SuperClass.ReceiveEndPlay(self);
|
||
|
end
|
||
|
|
||
|
--[[
|
||
|
function BP_SmallBunker:ReceiveTick(DeltaTime)
|
||
|
self.SuperClass.ReceiveTick(self, DeltaTime);
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function BP_SmallBunker:GetReplicatedProperties()
|
||
|
return
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function BP_SmallBunker:GetAvailableServerRPCs()
|
||
|
return
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
return BP_SmallBunker;
|