CT ANIMATED TEXTURE: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Redirected page to DialogControls-AnimTexture)
 
(page overhaul)
Tag: Removed redirect
Line 1: Line 1:
#REDIRECT [[DialogControls-AnimTexture]]
{{CT|intro
|macro = CT_ANIMATED_TEXTURE
|value = 45
|description = Informative text about this control type.
|commands =
|events =
}}
 
{{CT|abc start}}
=== C ===
{{CT|attribute
|name=colorBar
|type1=Array
|value1={1,0,0,1}
|description=
}}
 
{{CT|attribute
|name=colorFrame
|type1=Array
|value1={0,0,0,1}
|description=
}}
 
=== T ===
{{CT|attribute
|name=texture
|type1=String
|value1="#(argb,8,8,3)color(0,0,1,1)"
|description=
}}
 
{{CT|abc end}}
 
{{CT|examples}}
=== RscExample ===
{{Stub}}
<syntaxhighlight lang="cpp">
</syntaxhighlight>

Revision as of 14:21, 29 November 2020

Introduction

Informative text about this control type.


Related commands & functions

Related User Interface Eventhandlers

Alphabetical Order

TokenNames common to most controls, such as x, y, w, h, text, idc... can be found here.
Not all of the listed attributes might have an effect nor might the list be complete. All attributes were gathered with this config crawler.
#define CT_ANIMATED_TEXTURE 45


C

colorBar

Type
Array
Description
n/a
colorBar[] = {1,0,0,1};


colorFrame

Type
Array
Description
n/a
colorFrame[] = {0,0,0,1};


T

texture

Type
String
Description
n/a
texture = "#(argb,8,8,3)color(0,0,1,1)";



Default Classes

Arma 3
AddOns: Classes need to be initialised first with class SomeClass;

Missions: Since Arma 3 v2.02 one can use import SomeClass; to initialise a class (see the import keyword).

In older versions, use "Default" call BIS_fnc_exportGUIBaseClasses; and paste the result into the description.ext.

RscExample

Template:Stub