playMaker

Author Topic: question about linker wizard[SOLVED]  (Read 955 times)

cel

  • Full Member
  • ***
  • Posts: 132
question about linker wizard[SOLVED]
« 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
« Last Edit: December 24, 2019, 07:54:50 AM by jeanfabre »

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Re: question about linker wizard
« Reply #1 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