Add global string
to Text
conversion
This commit is contained in:
parent
f6364229ed
commit
cef551b660
@ -25,6 +25,11 @@ class AcediaActor extends Actor
|
|||||||
|
|
||||||
var protected Global _;
|
var protected Global _;
|
||||||
|
|
||||||
|
public final function Text T(string string)
|
||||||
|
{
|
||||||
|
return _.text.FromString(string);
|
||||||
|
}
|
||||||
|
|
||||||
event PreBeginPlay()
|
event PreBeginPlay()
|
||||||
{
|
{
|
||||||
super.PreBeginPlay();
|
super.PreBeginPlay();
|
||||||
|
@ -25,6 +25,11 @@
|
|||||||
class AcediaObject extends Object
|
class AcediaObject extends Object
|
||||||
abstract;
|
abstract;
|
||||||
|
|
||||||
|
public final function Text T(string string)
|
||||||
|
{
|
||||||
|
return _().text.FromString(string);
|
||||||
|
}
|
||||||
|
|
||||||
public static final function Global _()
|
public static final function Global _()
|
||||||
{
|
{
|
||||||
return Global(class'Global'.static.GetInstance());
|
return Global(class'Global'.static.GetInstance());
|
||||||
|
Reference in New Issue
Block a user