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
23 lines
842 B
C#
23 lines
842 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
[CreateAssetMenu(fileName = "JobDescription", menuName = "RiftMayhem/Settings/Jobs/Job Description", order = 0)]
|
|
public class JobDescription : ScriptableObject
|
|
{
|
|
[Header("Title:")]
|
|
public string title = "Skelly'nvasion Cleanup Crew";
|
|
[Header("Description:")]
|
|
[TextArea(10,20)]
|
|
public string description = @"Location: The Skellyard (Graveyard)
|
|
|
|
Mission Brief:
|
|
|
|
Attention, Rift Hunters!The Skellyard, once a serene resting place, has been overrun by a menacing horde of skeletons - the dreaded Skelly'nvasion! As a member of the Cleanup Crew, your mission is to venture into the heart of the Skellyard and purge it of these skeletal invaders.";
|
|
|
|
[Header("Settings:")]
|
|
public bool showJobTitlePrefix = true;
|
|
|
|
}
|