Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: cel on December 24, 2019, 05:59:29 AM

Title: question about linker wizard[SOLVED]
Post by: cel on December 24, 2019, 05:59:29 AM
Hi,

I know that setting properties with the set property action may need then linker wizard if you want to export to android or ios,

but, having an action itself with the following code:

Code: [Select]
private void SetProperty()
        {
           storeValue.Value =  _character.characterLocomotion.canRun;
        }

will this qualify as a need to use linker wizard before compiling, even though is inside a question?

thanks
Title: Re: question about linker wizard
Post by: jeanfabre on December 24, 2019, 07:54:40 AM
Hi,

no, you don't need the linker wizard when you access the api this way, the linker wizard is only needed when you use Reflection.

https://docs.microsoft.com/en-us/dotnet/framework/reflection-and-codedom/reflection

Bye,

 Jeab