forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMauiBitmap.lua
More file actions
98 lines (78 loc) · 1.49 KB
/
CMauiBitmap.lua
File metadata and controls
98 lines (78 loc) · 1.49 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
93
94
95
96
97
--- Class CMauiBitmap
-- @classmod User.CMauiBitmap
---
-- GetNumFrames()
function CMauiBitmap:GetNumFrames()
end
---
-- Bitmap:InternalSetSolidColor(color)
function CMauiBitmap:InternalSetSolidColor(color)
end
---
-- Loop(bool)
function CMauiBitmap:Loop(bool)
end
---
-- Play()
function CMauiBitmap:Play()
end
---
-- SetBackwardPattern()
function CMauiBitmap:SetBackwardPattern()
end
---
-- SetForwardPattern()
function CMauiBitmap:SetForwardPattern()
end
---
-- SetFrame(int)
function CMauiBitmap:SetFrame(int)
end
---
-- SetFramePattern(pattern)
function CMauiBitmap:SetFramePattern(pattern)
end
---
-- SetFrameRate(float)
function CMauiBitmap:SetFrameRate(float)
end
---
-- SetLoopPingPongPattern()
function CMauiBitmap:SetLoopPingPongPattern()
end
---
-- Bitmap:SetNewTexture(filename(s), border=1)
function CMauiBitmap:SetNewTexture(filename(s)
end
---
-- SetPingPongPattern()
function CMauiBitmap:SetPingPongPattern()
end
---
-- SetTiled(bool)
function CMauiBitmap:SetTiled(bool)
end
---
-- Bitmap:SetUV(float u0, float v0, float u1, float v1)
function CMauiBitmap:SetUV(float u0, float v0, float u1, float v1)
end
---
-- ShareTextures(bitmap) - allows two bitmaps to use the same textures
function CMauiBitmap:ShareTextures(bitmap)
end
---
-- Stop()
function CMauiBitmap:Stop()
end
---
-- UseAlphaHitTest(bool)
function CMauiBitmap:UseAlphaHitTest(bool)
end
---
-- derived from CMauiControl
function CMauiBitmap:base()
end
---
--
function CMauiBitmap:moho.bitmap_methods()
end