function M:LeftMouseButton_Pressed()
end
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
实例:绑定按键并打印它的名字
local M = UnLua.Class()
local PrintString = UE.UKismetSystemLibrary.PrintString
local function Print(text)PrintString(nil, text,true,false, UE.FLinearColor(1,1,1,1),100)
end
function M:ReceiveBeginPlay()
local msg =[[
来试试以下输入吧:
字母、数字、小键盘、方向键、鼠标
]]Print(msg)
end
local function SetupKeyBindings()
local key_names ={-- 字母
"A","B",--[["C",]]"D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U",--[["V",]]"W","X","Y","Z",-- 数字
"One","Two","Three","Four","Five","Six","Seven","Eight","Nine",-- 小键盘
"NumPadOne","NumPadTwo","NumPadThree","NumPadFour","NumPadFive","NumPadSix","NumPadSeven","NumPadEight","NumPadNine",-- 方向键
"Up","Down","Left","Right",-- ProjectSettings -> Engine - Input -> Action Mappings
"Fire","Aim",}for _, key_name in ipairs(key_names)do
M[key_name .."_Pressed"]=function(self, key)Print(string.format("按下了%s", key.KeyName))
end
end
end
local function SetupAxisBindings()
local axis_names ={"MoveForward","MoveRight","Turn","LookUp","LookUpRate","TurnRate"}for _, axis_name in ipairs(axis_names)do
M[axis_name]=function(self, value)if value ~=0 then
Print(string.format("%s(%f)", axis_name, value))
end
end
end
end
SetupKeyBindings()-- 在require的时候会执行
SetupAxisBindings()
local BindKey = UnLua.Input.BindKey
BindKey(M,"C","Pressed",function(self, Key)Print("按下了C")
end)BindKey(M,"C","Pressed",function(self, Key)Print("复制")
end,{ Ctrl =true})BindKey(M,"V","Pressed",function(self, Key)Print("按下了V")
end)BindKey(M,"V","Pressed",function(self, Key)Print("粘贴")
end,{ Ctrl =true})return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
动态绑定Lua脚本
Actor:
local World = self:GetWorld()
local SpawnClass = self.SpawnClass
local Transform = self.SpawnPointActor:GetTransform()
local AlwaysSpawn = UE.ESpawnActorCollisionHandlingMethod.AlwaysSpawn
World:SpawnActor(SpawnClass, Transform, AlwaysSpawn, self, self,"XXX.XXX")
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
Object:
local WidgetClass = self.WidgetClass
local img =NewObject(WidgetClass, self, nil,"XXX.XXX")
img:AddToViewport()
img:RandomPosition()
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
委托
local FLinearColor = UE.FLinearColor
local M = UnLua.Class()
function M:Construct()-- Bind
self.ClickMeButton.OnClicked:Add(self, self.OnButtonClicked)
self.ClickMeCheckBox.OnCheckStateChanged:Add(self, self.OnCheckBoxToggled)-- SetTimerByEvent
self.TimerHandle = UE.UKismetSystemLibrary.K2_SetTimerDelegate({ self, self.OnTimer },1,true)
end
function M:OnButtonClicked()
local r = math.random()
local g = math.random()
local b = math.random()
self.ClickMeButton:SetBackgroundColor(FLinearColor(r, g, b,1))
end
function M:OnCheckBoxToggled(on)if on then
self.CheckBoxText:SetText("已选中")else
self.CheckBoxText:SetText("未选中")
end
end
function M:OnTimer())
end
function M:Destruct()-- Unbind
self.ClickMeButton.OnClicked:Remove(self, self.OnButtonClicked)
self.ClickMeCheckBox.OnCheckStateChanged:Remove(self, self.OnCheckBoxToggled)-- ClearTimer
UE.UKismetSystemLibrary.K2_ClearAndInvalidateTimerHandle(self, self.TimerHandle)
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
容器使用
创建原生容器时通常需要指定参数类型,来确定容器内存放的数据类型
class="table-box">
参数类型
示例
实际类型
boolean
true
Boolean
number
0
Interge
string
“”
String
table
FVector
Vector
userdata
FVector(1,1,1)
Vector
例:
local array =TArray({ElementType})
local set =TSet({ElementType})
local map =TMap({KeyType},{ValueType})
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
local array = UE.TArray(0)
local set = UE.TSet(0)
local map = UE.TMap(0,true)
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
延迟与协程的使用
local M = UnLua.Class()
local Latent = UE.UKismetSystemLibrary.XXXLatentFunction
-- 定义一个协程函数
function M:StartCoroutine()
local co = coroutine.create(function()print("开始等待...")
Latent.Wait(2.0)print("等待结束")
end)
coroutine.resume(co)
end
function M:ReceiveBeginPlay()
self:StartCoroutine()
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local M = UnLua.Class()
local PrintString = UE.UKismetSystemLibrary.PrintString
local function Print(text)PrintString(nil, text,true,false, UE.FLinearColor(1,1,1,1),100)
end
local function run(self, name)Print(string.format("协程%s:启动", name))for i =1,5do
UE.UKismetSystemLibrary.Delay(self,1)Print(string.format("协程%s:%d", name, i))
end
Print(string.format("协程%s:结束", name))
end
function M:ReceiveBeginPlay()
local msg =[[
—— ReceiveBeginPlay"
]]Print(msg)
coroutine.resume(coroutine.create(run), self,"A")
coroutine.resume(coroutine.create(run), self,"B")
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
local M = UnLua.Class()
local PrintString = UE.UKismetSystemLibrary.PrintString
local function Print(text)PrintString(nil, text,true,false, UE.FLinearColor(1,1,1,1),100)
end
function M:ReceiveBeginPlay()
local msg =[[
—— ReceiveBeginPlay
]]Print(msg)
UE.UTutorialBlueprintFunctionLibrary.CallLuaByGlobalTable()Print("=================")
UE.UTutorialBlueprintFunctionLibrary.CallLuaByFLuaTable()
end
function M.CallMe(a, b)
local ret = a + b
local msg = string.format("[Lua]收到来自C++的调用,a=%f b=%f,返回%f", a, b, ret)Print(msg)return ret
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
local M = UnLua.Class()
local PrintString = UE.UKismetSystemLibrary.PrintString
local function Print(text)PrintString(nil, text, true, false, UE.FLinearColor(1,1,1,1),100)
end
function M:ReceiveBeginPlay()
local msg =[[-- ReceiveBeginPlay
]]Print(msg)
local tutorial = UE.FTutorialObject("教程")
msg = string.format("tutorial -> %s\n\ntutorial:GetTitle() -> %s",tostring(tutorial), tutorial:GetTitle())Print(msg)
end
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
---@type ReleaseUMG_Root_C
local M = UnLua.Class()
function M:Construct()print("Root Construct")
self.Button_AddNew.OnClicked:Add(self, self.OnAddNew)
self.Button_ReleaseAll.OnClicked:Add(self, self.OnReleaseAll)
end
function M:OnAddNew()print("Root Add New")
local widget_class = UE.UClass.Load("/Game/Tutorials/11_ReleaseUMG/ReleaseUMG_ItemParent.ReleaseUMG_ItemParent_C")
local widget =NewObject(widget_class, self)
self.VerticalBox_Panel:AddChildToVerticalBox(widget)
end
function M:OnReleaseAll()
self:RemoveFromViewport()
end
function M:Destruct()print("Root Destruct")
self:Release()
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
测试部分:
--[[
说明:
UMG对象的释放流程:
1、调用self:Release(),解除LuaTable在C++侧的引用
2、确保LuaTable在Lua侧没有其他引用,触发LuaGC
3、C++侧收到UObject_Delete回调,解除UMG在C++侧的引用
4、确保UMG在C++侧没有其他引用,触发UEGC
小提示:
使用控制台命令查看对象和类的引用情况:
查看指定类的引用列表:Obj List Class=ReleaseUMG_Root_C
查看指定对象的引用链:Obj Refs Name=ReleaseUMG_Root_C_0
]]--
local Screen = require "Tutorials.Screen"
local M = UnLua.Class()
local function print_intro()
local msg =[[
使用以下按键进行一次强制垃圾回收:
C:强制 C++ GC
L:强制 Lua GC
—— 本示例来自 "Content/Script/Tutorials.11_ReleaseUMG.lua"]]
Screen.Print(msg)
end
function M:ReceiveBeginPlay()
local widget_class = UE.UClass.Load("/Game/Tutorials/11_ReleaseUMG/ReleaseUMG_Root.ReleaseUMG_Root_C")
local widget_root =NewObject(widget_class, self)
widget_root:AddToViewport()print_intro()
end
function M:L_Pressed()collectgarbage("collect")
Screen.Print('collectgarbage("collect")')
end
function M:C_Pressed()
UE.UKismetSystemLibrary.CollectGarbage()
Screen.Print("UKismetSystemLibrary.CollectGarbage()")
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
local M = UnLua.Class()
function M:Received_Notify(MeshComp, Animation)returntrue
end
return M
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: