First commit for private source control. Older commits available on Github.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 497a6b1404a3420b8db86adb8ea0a814
|
||||
timeCreated: 1770991451
|
||||
@@ -0,0 +1,18 @@
|
||||
using BriarQueen.Data.Identifiers;
|
||||
using BriarQueen.Framework.Events.Save;
|
||||
using BriarQueen.Framework.Events.UI;
|
||||
using BriarQueen.Framework.Managers.Levels.Data;
|
||||
using Cysharp.Threading.Tasks;
|
||||
|
||||
namespace BriarQueen.Game.Items.Pickups.ChapterOne.Pumphouse
|
||||
{
|
||||
public class Pliers : BaseItem
|
||||
{
|
||||
protected override UniTask OnInteracted()
|
||||
{
|
||||
TutorialService.DisplayTutorial(TutorialPopupID.MultipleUseItems);
|
||||
|
||||
return UniTask.CompletedTask;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 948e07af025b4fb7b0b3698c96d73f87
|
||||
timeCreated: 1770992135
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a11cd0830c544fa19956201c59d8d29d
|
||||
timeCreated: 1771003426
|
||||
@@ -0,0 +1,24 @@
|
||||
using BriarQueen.Framework.Managers.Levels.Data;
|
||||
using UnityEngine;
|
||||
|
||||
namespace BriarQueen.Game.Items.Pickups.ChapterOne.Workshop
|
||||
{
|
||||
public class Candle : BaseItem
|
||||
{
|
||||
[SerializeField]
|
||||
private CandleColour _colour;
|
||||
|
||||
public override string InteractableName => $"{_colour.ToString()} Candle";
|
||||
|
||||
internal enum CandleColour
|
||||
{
|
||||
Red,
|
||||
Orange,
|
||||
Yellow,
|
||||
Green,
|
||||
Blue,
|
||||
Indigo,
|
||||
Violet
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bec4d666bbcf43338c71dfa3ee9315c5
|
||||
timeCreated: 1771010785
|
||||
Reference in New Issue
Block a user