Whole interactable world-board with different zones and jobs ready to be completed. - party voting for job selection & scene swapping - fully working scene change between inn and skellyard - updated many systems with lots of new information - bunch of new UIs to acomodate new job and scene swapping voting systems
29 lines
777 B
C#
29 lines
777 B
C#
using Photon.Pun;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "GameEvent_JobData", menuName = "Wavefunction/Event/New GameEvent JobData", order = 1)]
|
|
public class GameEvent_JobData : ScriptableObject
|
|
{
|
|
private List<GameEventListener_JobData> listeners = new List<GameEventListener_JobData>();
|
|
|
|
public void Raise(JobData jobData)
|
|
{
|
|
for (int i = listeners.Count - 1; i >= 0; i--)
|
|
{
|
|
listeners[i].OnEventRaised(jobData);
|
|
}
|
|
}
|
|
|
|
public void RegisterListener(GameEventListener_JobData listener)
|
|
{
|
|
listeners.Add(listener);
|
|
}
|
|
|
|
public void UnRegisterListener(GameEventListener_JobData listener)
|
|
{
|
|
listeners.Remove(listener);
|
|
}
|
|
}
|