• Hi Guest!

    We are extremely excited to announce the release of our first Beta for VaM2, the next generation of Virt-A-Mate which is currently in development.
    To participate in the Beta, a subscription to the Entertainer or Creator Tier is required. Once subscribed, download instructions can be found here.

    Click here for information and guides regarding the VaM2 beta. Join our Discord server for more announcements and community discussion about VaM2.

Adding the "Actions on trigger" menu in plugin GUI

mrmr32

Well-known member
Joined
Sep 4, 2022
Messages
124
Reactions
333
I want to add actions when a internal script event happens, and I thought using the already existing VAM trigger GUI will be the easiest way to do it.
In particular I need this part of the CollisionTrigger/LookAtTrigger (add actions & edit them):
img.jpg


I've been searching for almost a week now, and still nothing. I think that what I need is to save a Trigger variable inside the script, but in order to call InitTriggerUI()* the UITransform needs a TriggerUI (and with GameObject#AddComponent<TriggerUI>() it stills shows as null).

* In LookAtTrigger, inside InitUI, it performs this initialization:
C#:
LookAtTriggerUI componentInChildren = this.UITransform.GetComponentInChildren<LookAtTriggerUI>();
...
this.trigger.triggerActionsParent = componentInChildren.transform;
this.trigger.triggerPanel = componentInChildren.transform;
this.trigger.triggerActionsPanel = componentInChildren.transform;
this.trigger.InitTriggerUI();
this.trigger.InitTriggerActionsUI();
 
I decided to use Macgruber_Utils.cs. Easier to use, cleaner GUI, and you can see how it is used in the plugin itself.
Thanks for all, you saved me!
 
Back
Top Bottom