-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathActorFrameTexture.lua
41 lines (33 loc) · 1.15 KB
/
ActorFrameTexture.lua
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
---@meta
--- An ActorFrame that renders its contents to a texture.
---@class ActorFrameTexture : ActorFrame
---@overload fun(self: ActorFrameTexture) : self
---@field [string] fun(self: ActorFrameTexture, params: table?)
ActorFrameTexture = {}
--- Creates the ActorFrameTexture.
---@return self
function ActorFrameTexture:Create() end
--- Enables/disables the Alpha Buffer.
---@param bEnable boolean
---@return self
function ActorFrameTexture:EnableAlphaBuffer(bEnable) end
--- Enables/disables the Depth Buffer.
---@param bEnable boolean
---@return self
function ActorFrameTexture:EnableDepthBuffer(bEnable) end
--- Enables/disables the use of RGBA16F with textures.
--- Considered deprecated.
---@param bEnable boolean
---@return self
function ActorFrameTexture:EnableFloat(bEnable) end
--- Enables/disables the Preserve Texture option.
---@param bEnable boolean
---@return self
function ActorFrameTexture:EnablePreserveTexture(bEnable) end
--- Returns the texture.
---@return RageTexture
function ActorFrameTexture:GetTexture() end
--- Sets the texture's name to `sName`.
---@param sName string
---@return self
function ActorFrameTexture:SetTextureName(sName) end