rogerdv
Im trying to test Variant and new ScriptObject support, but this code produces an error of No matching siganture for Variant(Test&):
class Test : ScriptObject
{
void CallScript()
{
Variant t = Variant(this);
}
}
What Im doing wrong here?