|
Integer | MathLib::Abs (Integer _Argument1) |
|
Real | MathLib::Abs (Real _Argument1) |
|
Real | MathLib::ToReal (Integer _Argument1) |
|
Real | MathLib::DegToRad (Real _Degree) |
| Converts an angle from degrees to radians. More...
|
|
Real | MathLib::RadToDeg (Real _Radian) |
| Converts an angle from radians to degrees. More...
|
|
Real | MathLib::Sin (Real _Argument1) |
|
Real | MathLib::Cos (Real _Argument1) |
|
Real | MathLib::Tan (Real _Argument1) |
|
Real | MathLib::Atan2 (Real _Argument1, Real _Argument2) |
|
Real | MathLib::Exp (Real _Argument1) |
|
Real | MathLib::Rand (Real _Argument1, Real _Argument2) |
|
Real | MathLib::Rand (Real _Argument1, Real _Argument2, Integer _Argument3) |
|
Integer | MathLib::Rand (Integer _Argument1, Integer _Argument2) |
|
Integer | MathLib::Rand (Integer _Argument1, Integer _Argument2, Integer _Argument3) |
|
Real | MathLib::NearestReal (Integer _Argument1) |
|
Integer | MathLib::NearestInteger (Real _Argument1) |
|
Integer | MathLib::FloorInteger (Real _Argument1) |
|
Integer | MathLib::TruncInteger (Real _Argument1) |
|
Integer | MathLib::CeilingInteger (Real _Argument1) |
|
Real | MathLib::Distance (Real _Argument1, Real _Argument2) |
|
Real | MathLib::Distance (Vec2 _Argument1, Vec2 _Argument2) |
| Euclidian distance between two 2d points. More...
|
|
Real | MathLib::Distance (Vec3 _Argument1, Vec3 _Argument2) |
| Euclidian distance between two 3d points. More...
|
|
Real | MathLib::Length (Vec2 _Argument1) |
| Euclidian norm of the vector. More...
|
|
Real | MathLib::Length (Vec3 _Argument1) |
| Euclidian norm of the vector. More...
|
|
Real | MathLib::Norm0 (Vec2 _Argument1) |
| Returns maximum of the absolute value of each component. More...
|
|
Real | MathLib::Norm1 (Vec2 _Argument1) |
| Returns the sum of the absolute value of each component. More...
|
|
Real | MathLib::Norm0 (Vec3 _Argument1) |
| Returns maximum of the absolute value of each component. More...
|
|
Real | MathLib::Norm1 (Vec3 _Argument1) |
| Returns the sum of the absolute value of each component. More...
|
|
Integer | MathLib::Norm0 (Int2 _Argument1) |
| Returns maximum of the absolute value of each component. More...
|
|
Integer | MathLib::Norm1 (Int2 _Argument1) |
| Returns the sum of the absolute value of each component. More...
|
|
Integer | MathLib::Norm0 (Int3 _Argument1) |
| Returns maximum of the absolute value of each component. More...
|
|
Integer | MathLib::Norm1 (Int3 _Argument1) |
| Returns the sum of the absolute value of each component. More...
|
|
Real | MathLib::DotProduct (Vec3 _Argument1, Vec3 _Argument2) |
|
Vec3 | MathLib::CrossProduct (Vec3 _Argument1, Vec3 _Argument2) |
|
Real | MathLib::DotProduct (Vec2 _Argument1, Vec2 _Argument2) |
|
Integer | MathLib::DotProduct (Int3 _Argument1, Int3 _Argument2) |
|
Int3 | MathLib::CrossProduct (Int3 _Argument1, Int3 _Argument2) |
|
Integer | MathLib::DotProduct (Int2 _Argument1, Int2 _Argument2) |
|
Real | MathLib::Angle (Vec3 _Argument1, Vec3 _Argument2) |
|
Real | MathLib::OrientedAngle (Vec3 _Argument1, Vec3 _Argument2) |
|
Real | MathLib::Angle (Real _Radian1, Real _Radian2) |
| Returns the smallest angle from A to B. More...
|
|
Real | MathLib::Angle (Vec2 _Argument1, Vec2 _Argument2) |
|
Real | MathLib::OrientedAngle (Vec2 _Argument1, Vec2 _Argument2) |
|
Real | MathLib::PI () |
|
Real | MathLib::Asin (Real _Argument1) |
|
Real | MathLib::Acos (Real _Argument1) |
|
Real | MathLib::Pow (Real _Argument1, Real _Argument2) |
|
Real | MathLib::Ln (Real _Argument1) |
|
Real | MathLib::Sqrt (Real _Argument1) |
|
Integer | MathLib::Max (Integer _A, Integer _B) |
| Returns the maximum between A and B. More...
|
|
Integer | MathLib::Min (Integer _A, Integer _B) |
| Returns the minimum between A and B. More...
|
|
Integer | MathLib::Clamp (Integer _X, Integer _Min, Integer _Max) |
| Returns the value X clamped to the range Min..Max. More...
|
|
Real | MathLib::Max (Real _A, Real _B) |
| Returns the maximum between A and B. More...
|
|
Real | MathLib::Min (Real _A, Real _B) |
| Returns the minimum between A and B. More...
|
|
Real | MathLib::Clamp (Real _X, Real _Min, Real _Max) |
| Returns the value X clamped to the range Min..Max. More...
|
|
Real | MathLib::Mod (Real _X, Real _Min, Real _Max) |
| Returns the modulus of X in the range Min..Max. More...
|
|
Vec2 | MathLib::Max (Vec2 _A, Vec2 _B) |
| Returns the maximum between A and B. More...
|
|
Vec2 | MathLib::Min (Vec2 _A, Vec2 _B) |
| Returns the minimum between A and B. More...
|
|
Vec2 | MathLib::Clamp (Vec2 _X, Vec2 _Min, Vec2 _Max) |
| Returns the value X clamped to the range Min..Max. More...
|
|
Vec3 | MathLib::Max (Vec3 _A, Vec3 _B) |
| Returns the maximum between A and B. More...
|
|
Vec3 | MathLib::Min (Vec3 _A, Vec3 _B) |
| Returns the minimum between A and B. More...
|
|
Vec3 | MathLib::Clamp (Vec3 _X, Vec3 _Min, Vec3 _Max) |
| Returns the value X clamped to the range Min..Max. More...
|
|
Int2 | MathLib::Max (Int2 _A, Int2 _B) |
| Returns the maximum between A and B. More...
|
|
Int2 | MathLib::Min (Int2 _A, Int2 _B) |
| Returns the minimum between A and B. More...
|
|
Int2 | MathLib::Clamp (Int2 _X, Int2 _Min, Int2 _Max) |
| Returns the value X clamped to the range Min..Max. More...
|
|
Int3 | MathLib::Max (Int3 _A, Int3 _B) |
| Returns the maximum between A and B. More...
|
|
Int3 | MathLib::Min (Int3 _A, Int3 _B) |
| Returns the minimum between A and B. More...
|
|
Int3 | MathLib::Clamp (Int3 _X, Int3 _Min, Int3 _Max) |
| Returns the value X clamped to the range Min..Max. More...
|
|
Real | TextLib::ToReal (Text _Text) |
| Returns the Real corresponding to _Text. More...
|
|
Integer | TextLib::ToInteger (Text _Text) |
| Returns the Integer corresponding to _Text. More...
|
|
Vec3 | TextLib::ToColor (Text _Text) |
| Returns the RGB color corresponding to _Text. More...
|
|
Text | TextLib::SubString (Text _Text, Integer _Start, Integer _Length) |
| Returns a substring of _Text. More...
|
|
Text | TextLib::SubText (Text _Text, Integer _Start, Integer _Length) |
| Returns a substring of _Text. More...
|
|
Integer | TextLib::Length (Text _Text) |
| Returns the length of _Text. More...
|
|
Text | TextLib::ToText (Integer _Integer) |
| Returns the Text corresponding to _Integer. More...
|
|
Text | TextLib::ToText (Real _Real) |
| Returns the Text corresponding to _Real. More...
|
|
Text | TextLib::ToText (Boolean _Boolean) |
| Returns the Text corresponding to _Boolean. More...
|
|
Text | TextLib::ToText (Int3 _Int3) |
| Returns the Text corresponding to _Int3. More...
|
|
Text | TextLib::ToText (Vec3 _Vec3) |
| Returns the Text corresponding to _Vec3. More...
|
|
Text | TextLib::TimeToText (Integer _Time) |
| Returns the Text corresponding to _Time. More...
|
|
Text | TextLib::TimeToText (Integer _Time, Boolean _IncludeCentiSeconds) |
| Returns the Text corresponding to _Time. More...
|
|
Text | TextLib::TimeToText (Integer _Time, Boolean _IncludeCentiSeconds, Boolean _IncludeMilliSeconds) |
| Returns the Text corresponding to _Time. More...
|
|
Text | TextLib::ColorToText (Vec3 _Color) |
| Returns the Text corresponding to _Color. More...
|
|
Text | TextLib::FormatInteger (Integer _Argument1, Integer _Argument2) |
|
Text | TextLib::FormatInteger (Integer _Value, Integer _MinLength, Boolean _WithSeparator) |
|
Text | TextLib::FormatRank (Integer _Rank, Boolean _ShortFormat) |
| Returns the rank corresponding to a number, formatted according to the locale. ShortFormat: '25k' otherwise '25654th'. More...
|
|
Text | TextLib::FormatReal (Real _Value, Integer _FPartLength, Boolean _HideZeroes, Boolean _HideDot) |
| Returns the Text corresponding to a Real. With formatting. More...
|
|
Text | TextLib::ToUpperCase (Text _TextToChange) |
| Changes lower case characters to upper case characters. More...
|
|
Text | TextLib::ToLowerCase (Text _TextToChange) |
| Changes upper case characters to lower case characters. More...
|
|
Text | TextLib::CloseStyleTags (Text _String) |
| Return a string where the previously unclosed $< tags have their $> counterpart. More...
|
|
Boolean | TextLib::CompareWithoutFormat (Text _Text1, Text _Text2, Boolean _IsCaseSensitive) |
| Compares texts without taking format characters in account. More...
|
|
Boolean | TextLib::Find (Text _TextToFind, Text _TextToSearchIn, Boolean _IsFormatSensitive, Boolean _IsCaseSensitive) |
| Returns True if the searched text is found in the text to search in. More...
|
|
Boolean | TextLib::EndsWith (Text _TextToFind, Text _TextToSearchIn) |
| Return True if the Text ends with the TextToFind. More...
|
|
Boolean | TextLib::EndsWith (Text _TextToFind, Text _TextToSearchIn, Boolean _IsFormatSensitive, Boolean _IsCaseSensitive) |
| Return True if the Text ends with the TextToFind. More...
|
|
Boolean | TextLib::StartsWith (Text _TextToFind, Text _TextToSearchIn) |
| Return True if the Text starts with the TextToFind. More...
|
|
Boolean | TextLib::StartsWith (Text _TextToFind, Text _TextToSearchIn, Boolean _IsFormatSensitive, Boolean _IsCaseSensitive) |
| Return True if the Text starts with the TextToFind. More...
|
|
Text | TextLib::Compose (Text _Argument1) |
|
Text | TextLib::Compose (Text _Argument1, Text _Argument2) |
|
Text | TextLib::Compose (Text _Argument1, Text _Argument2, Text _Argument3) |
|
Text | TextLib::Compose (Text _Argument1, Text _Argument2, Text _Argument3, Text _Argument4) |
|
Text | TextLib::Compose (Text _Argument1, Text _Argument2, Text _Argument3, Text _Argument4, Text _Argument5) |
|
Text | TextLib::Compose (Text _Argument1, Text _Argument2, Text _Argument3, Text _Argument4, Text _Argument5, Text _Argument6) |
|
Text | TextLib::MLEncode (Text _Argument1) |
|
Text | TextLib::URLEncode (Text _Argument1) |
|
Text | TextLib::StripFormatting (Text _Argument1) |
|
Array< Text > | TextLib::Split (Text _Separators, Text _Text) |
| Splits a given text based on a given separators set. More...
|
|
Array< Text > | TextLib::Split (Text _Separators, Text _Text, Boolean _MergeSeparators) |
| Splits a given text based on a given separators set. More...
|
|
Text | TextLib::Join (Text _Separator, Array< Text > _Texts) |
| Joins a set of texts with the given separator. More...
|
|
Text | TextLib::Trim (Text _Argument1) |
|
Text | TextLib::ReplaceChars (Text _Argument1, Text _Argument2, Text _Argument3) |
|
Text | TextLib::Replace (Text _Text, Text _ToReplace, Text _Replacement) |
| Replaces occurences of _ToReplace in _Text with _Replacement. More...
|
|
Array< Text > | TextLib::RegexFind (Text _Pattern, Text _Text, Text _Flags) |
| Find occurences of the _Pattern in the _Text. More...
|
|
Array< Text > | TextLib::RegexMatch (Text _Pattern, Text _Text, Text _Flags) |
| Captures the groups of the _Pattern in the matching _Text. group[0] is the whole pattern match. More...
|
|
Text | TextLib::RegexReplace (Text _Pattern, Text _Text, Text _Flags, Text _Replacement) |
| Replace the _Pattern in the matching text with _Replacement. More...
|
|
Text | TextLib::GetTranslatedText (Text _Text) |
| Lookup the text in the current translation dictionary. More...
|
|
CMapEditorPlugin::CardinalDirections | MapUnits::GetNextDir (CMapEditorPlugin::CardinalDirections _Argument1) |
|
CMapEditorPlugin::CardinalDirections | MapUnits::GetPreviousDir (CMapEditorPlugin::CardinalDirections _Argument1) |
|
CMapEditorPlugin::CardinalDirections | MapUnits::GetOpposedDir (CMapEditorPlugin::CardinalDirections _Argument1) |
|
CMapEditorPlugin::CardinalDirections | MapUnits::AddDirs (CMapEditorPlugin::CardinalDirections _Argument1, CMapEditorPlugin::CardinalDirections _Argument2) |
|
CMapEditorPlugin::CardinalDirections | MapUnits::SubDirs (CMapEditorPlugin::CardinalDirections _Argument1, CMapEditorPlugin::CardinalDirections _Argument2) |
|
Int3 | MapUnits::GetNeighbourCoord (Int3 _Argument1, CMapEditorPlugin::CardinalDirections _Argument2) |
|
Int3 | MapUnits::GetRotatedOffset (Int3 _Argument1, CMapEditorPlugin::CardinalDirections _Argument2) |
|
Int3 | MapUnits::GetRotatedOffsetPositive (Int3 _Argument1, CMapEditorPlugin::CardinalDirections _Argument2, Int3 _Argument3) |
|
Real | AnimLib::SmoothStep (Real _X) |
| Returns the value smoothly transitionning from 0 to 1. More...
|
|
Real | AnimLib::Ease (Text _Function, Real _T, Real _Base, Real _Change, Real _Duration) |
| Returns the value animated from Base to Base+Delta using Robert Penner easing functions. Function must be one of: "Linear", "QuadIn", "QuadOut", "QuadInOut", "CubicIn", "CubicOut", "CubicInOut", "QuartIn", "QuartOut", "QuartInOut", "QuintIn", "QuintOut", "QuintInOut", "SineIn", "SineOut", "SineInOut", "ExpIn", "ExpOut", "ExpInOut", "CircIn", "CircOut", "CircInOut", "BackIn", "BackOut", "BackInOut", "ElasticIn", "ElasticOut", "ElasticInOut", "ElasticIn2", "ElasticOut2", "ElasticInOut2", "BounceIn", "BounceOut", "BounceInOut". More...
|
|
Real | AnimLib::EaseLinear (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInQuad (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutQuad (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutQuad (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInCubic (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutCubic (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutCubic (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInQuart (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutQuart (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutQuart (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInQuint (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutQuint (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutQuint (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInSine (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutSine (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutSine (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInExp (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutExp (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutExp (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInCirc (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutCirc (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutCirc (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInBack (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutBack (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutBack (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInElastic (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutElastic (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutElastic (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInElastic2 (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutElastic2 (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutElastic2 (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInBounce (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseOutBounce (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Real | AnimLib::EaseInOutBounce (Integer _T, Real _Base, Real _Change, Integer _Duration) |
| Returns the value animated from Base to Base+Delta using R. Penner easing functions. More...
|
|
Text | TimeLib::FormatDate (Text _Timestamp, EDateFormats _Format) |
| Returns the date corresponding to a timestamp, formatted according to the locale. Not available on servers. More...
|
|
Text | TimeLib::FormatDelta (Text _Timestamp1, Text _Timestamp2, EDurationFormats _Format) |
| Returns the duration between 2 timestamps, formatted according to the locale. Not available on servers. More...
|
|
Text | TimeLib::FormatDelta (Text _Delta, EDurationFormats _Format) |
| Returns the duration Delta formatted according to the locale. Not available on servers. More...
|
|
Integer | TimeLib::Compare (Text _Timestamp1, Text _Timestamp2) |
| Compares 2 timestamps. More...
|
|
Real | TimeLib::Clamp01 (Text _Boundary1, Text _Boundary2, Text _Timestamp) |
| Returns a Real between 0 and 1, given an interval and a timestamp. More...
|
|
Real | TimeLib::Clamp01TZDay (Text _Timestamp) |
| Returns a Real between 0 and 1, given a timestamp, according to the day cycle in local timezone. More...
|
|
Real | TimeLib::Clamp01UTCDay (Text _Timestamp) |
| Returns a Real between 0 and 1, given a timestamp, according to the day cycle in UTC timezone. More...
|
|
Text | TimeLib::GetCurrent () |
| Gets current timestamp. More...
|
|
Integer | TimeLib::GetDelta (Text _Timestamp1, Text _Timestamp2) |
| Returns the duration in seconds between 2 timestamps. May be clamped if huge. More...
|
|
Integer | TimeLib::GetLocalDelta_Years (Text _Timestamp1, Text _Timestamp2) |
| Returns the duration in complete years between 2 timestamps, according to the local dates. More...
|
|
Integer | TimeLib::GetLocalDelta_Months (Text _Timestamp1, Text _Timestamp2) |
| Returns the duration in complete months between 2 timestamps, according to the local dates. More...
|
|
Integer | TimeLib::GetMillisecondsSinceInit () |
| Returns local milliseconds elapsed since game initialisation. More...
|
|
Vec3 | ColorLib::HsvToRgb (Vec3 _Hsv) |
|
Vec3 | ColorLib::RgbToHsv (Vec3 _Rgb) |
|
Text | ColorLib::RgbToHex3 (Vec3 _Rgb) |
| Returns the Hexa3 corresponding to the RGB given. More...
|
|
Text | ColorLib::RgbToHex6 (Vec3 _Rrggbb) |
| Returns the Hexa6 corresponding to the RGB given. More...
|
|
Vec3 | ColorLib::Hex3ToRgb (Text _Text) |
| Returns the RGB color corresponding to Hex3. More...
|
|
Vec3 | ColorLib::Hex6ToRgb (Text _Text) |
| Returns the RGB color corresponding to Hex6. More...
|
|
Vec3 | ColorLib::HexToRgb (Text _Text) |
| Returns the RGB color corresponding to Hex. More...
|
|