13 lines
332 B
Lua
Raw Permalink Normal View History

2025-01-18 21:26:02 +08:00
---@class BP_CaptureCamera_C:AActor
---@field Box UBoxComponent
---@field SceneCaptureComponent2D USceneCaptureComponent2D
---@field DefaultSceneRoot USceneComponent
--Edit Below--
local BP_CaptureCamera = {};
function BP_CaptureCamera:UpdateScenePic()
self.SceneCaptureComponent2D:CaptureScene()
end
return BP_CaptureCamera;