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
17 lines
446 B
C#
17 lines
446 B
C#
using Kryz.CharacterStats.Examples;
|
|
using Kryz.CharacterStats;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
[CreateAssetMenu(fileName = "ZoneData", menuName = "RiftMayhem/Settings/Zones/ZoneData", order = 0)]
|
|
public class ZoneData : ScriptableObject
|
|
{
|
|
[Header("In-game name:")]
|
|
public string zoneName;
|
|
[Header("Respective Level to Load Name:")]
|
|
public string levelName;
|
|
|
|
}
|