playMaker

Author Topic: Custom properties  (Read 879 times)

TVISARL

  • Junior Playmaker
  • **
  • Posts: 50
Custom properties
« on: April 04, 2020, 08:09:21 AM »
Hi, all!
How can I add (and read) custom prperties to a Game Object?
Thanks in advance.

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7614
    • jinxtergames
Re: Custom properties
« Reply #1 on: April 04, 2020, 10:01:17 AM »
hi,

1st look if maybe there are already actions on the Ecosystem

if none, you can make custom actions (see Playmaker API)

Or Use Get/Set Properties actions.
Get/Set Properties is using reflection (mean slower than dedicated actions)
So always try to find/use dedicated actions.
Also you will need to use linker wizard if you have issues with builds.

if it is a 3rd party asset you can also request the author to support Playmaker and if the author needs help, they can contact us :)

TVISARL

  • Junior Playmaker
  • **
  • Posts: 50
Re: Custom properties
« Reply #2 on: April 05, 2020, 05:28:55 AM »
Thanks.