Makinom version: latest
I want to call 'AdvEngineController.JumpScenario' in DialogManager(it's my custom script) when player interact to NPC.
I have confirmed that schematic is called.
current settings:
If I add a script directly to the interact object and set "class origin" to "component", it works fine.
However, I want it to work when the script is attached to other gameobject.
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
GameObjectA have A' component(script).
GameObjectB have this schematic.
Behavior I assume:
B's Search Objects find & store GameObjectA.
And, Call Function call A' component.
Actual behavior:
A' component script is not called.
Is there a good way to check the Gameobject Search Objects found?
1. Find GameObject A as an Actor if the schematic and use that Actor as the object in Call Function. (Schematic Settings -> Add Actor -> Find Object)
2. If it’s always going to be on the Player, they should be the Starting Object for the machine so you can use that as the object as well.
1st is awesome way. It worked perfectly.