forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCUIWorldView.lua
More file actions
93 lines (74 loc) · 1.86 KB
/
CUIWorldView.lua
File metadata and controls
93 lines (74 loc) · 1.86 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
--- Class CUIWorldView
-- @classmod User.CUIWorldView
---
-- EnableResourceRendering(bool)
function CUIWorldView:EnableResourceRendering(bool)
end
---
-- string moho.UIWorldView:GetRightMouseButtonOrder()
function CUIWorldView:GetRightMouseButtonOrder()
end
---
-- (vector2f|nil) = GetScreenPos(unit)
function CUIWorldView:GetScreenPos(unit)
end
---
-- moho.UIWorldView:GetsGlobalCameraCommands(bool getsCommands)
function CUIWorldView:GetsGlobalCameraCommands(bool getsCommands)
end
---
-- bool moho.UIWorldView:HasHighlightCommand()
function CUIWorldView:HasHighlightCommand()
end
---
-- bool IsCartographic()
function CUIWorldView:IsCartographic()
end
---
-- IsInputLocked(camera)
function CUIWorldView:IsInputLocked(camera)
end
---
-- bool IsResourceRenderingEnabled()
function CUIWorldView:IsResourceRenderingEnabled()
end
---
-- LockInput(camera)
function CUIWorldView:LockInput(camera)
end
---
-- VECTOR2 Project(self,VECTOR3) - given a point in world space, projects the point to control space
function CUIWorldView:Project(self, VECTOR3)
end
---
-- SetCartographic(bool)
function CUIWorldView:SetCartographic(bool)
end
---
-- SetHighlightEnabled(bool)
function CUIWorldView:SetHighlightEnabled(bool)
end
---
-- bool moho.UIWorldView:ShowConvertToPatrolCursor()
function CUIWorldView:ShowConvertToPatrolCursor()
end
---
-- UnlockInput(camera)
function CUIWorldView:UnlockInput(camera)
end
---
-- ZoomScale(x, y, wheelRot, wheelDelta) - cause the world to zoom based on wheel rotation event
function CUIWorldView:ZoomScale(x, y, wheelRot, wheelDelta)
end
---
-- moho.UIWorldView:__init(parent_control, cameraName, depth, isMiniMap, trackCamera)
function CUIWorldView:__init(parent_control, cameraName, depth, isMiniMap, trackCamera)
end
---
-- derived from CMauiControl
function CUIWorldView:base()
end
---
--
function CUIWorldView:moho.UIWorldView()
end