Search found 2 matches

by 2538050250
Tue Nov 15, 2022 12:41 pm
Forum: Dialogue System for Unity
Topic: Calling Method with Lua
Replies: 3
Views: 291

Re: Calling Method with Lua

Hi,
Thanks for your quick reply,, I, indeed didn't notice I was using the wrong command. It works fine now.
Thank you for warning me about the potential registering issue, I'll keep that in mind in the future.
Thanks again for your help,
Have a nice day,

Jean
by 2538050250
Mon Nov 14, 2022 12:25 pm
Forum: Dialogue System for Unity
Topic: Calling Method with Lua
Replies: 3
Views: 291

Calling Method with Lua

Hi, I'm trying to call a Method in a conversation to Open a Shop in another script : using System.Collections; using System.Collections.Generic; using UnityEngine; using PixelCrushers.DialogueSystem; public class ShopTrigger : MonoBehaviour { public ItemData[] itemsToSell; public void TriggerShop() ...