First commit for private source control. Older commits available on Github.
This commit is contained in:
7
Assets/Scripts/Framework/Events/UI/CodexChangedEvent.cs
Normal file
7
Assets/Scripts/Framework/Events/UI/CodexChangedEvent.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
using BriarQueen.Data.Identifiers;
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record CodexChangedEvent(CodexType EntryType) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a25c6ac2d479a43c3b2bef6bb401636d
|
||||
@@ -0,0 +1,8 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
using BriarQueen.Framework.Managers.UI;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record CursorStyleChangeEvent(UICursorService.CursorStyle Style) : IEvent;
|
||||
public record OverrideCursorStyleChangeEvent(UICursorService.CursorStyle Style) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 01441a1e59f1c4dedb7d6ec150d50488
|
||||
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record DisplayInteractEvent(string Message, object Payload = null) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b67c3e24810a746c3a83c09cd0f531cd
|
||||
@@ -0,0 +1,7 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
using BriarQueen.Framework.Managers.Player.Data;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record DisplayItemDescriptionEvent(ItemDataSo Item) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9120aa2b44db9462aa770ca558cffd21
|
||||
@@ -0,0 +1,7 @@
|
||||
using BriarQueen.Data.Identifiers;
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record DisplayTutorialPopupEvent(TutorialPopupID TutorialID) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dac94e23408444ce69318e396ddbfa71
|
||||
6
Assets/Scripts/Framework/Events/UI/FadeCompletedEvent.cs
Normal file
6
Assets/Scripts/Framework/Events/UI/FadeCompletedEvent.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record FadeCompletedEvent : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ef3cc035479441b3b0f9dbac770ac3e
|
||||
16
Assets/Scripts/Framework/Events/UI/FadeEvent.cs
Normal file
16
Assets/Scripts/Framework/Events/UI/FadeEvent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public enum FadeStyle
|
||||
{
|
||||
SolidColor = 0, // Left for Compat.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Publish with color != Color.clear to fade in.
|
||||
/// Publish with color == Color.clear to fade out (uses last active style).
|
||||
/// </summary>
|
||||
public record FadeEvent(bool Hidden, float Duration = 0.25f) : IEvent;
|
||||
}
|
||||
2
Assets/Scripts/Framework/Events/UI/FadeEvent.cs.meta
Normal file
2
Assets/Scripts/Framework/Events/UI/FadeEvent.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8eefea4ba4b1c45b6b563954853ab6ce
|
||||
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record PauseButtonClickedEvent : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d2e0a379205874cfc94af8621971fd64
|
||||
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record RequestUIOverrideEvent(bool Enabled) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aae38c023197e4b49a7c231a5a3fe6c6
|
||||
6
Assets/Scripts/Framework/Events/UI/ToggleCodexEvent.cs
Normal file
6
Assets/Scripts/Framework/Events/UI/ToggleCodexEvent.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record ToggleCodexEvent(bool Shown) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 028e68008f1754fe98d0fc180dea0fc1
|
||||
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record ToggleToolScreenEvent(bool Shown) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 87ffac4f399a4fe0aad98d7be48a752c
|
||||
timeCreated: 1773958329
|
||||
@@ -0,0 +1,7 @@
|
||||
using BriarQueen.Data.Identifiers;
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record ToolbeltChangedEvent(ToolID ToolID, bool Lost) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3af4618967b4408190e758a13137ed3c
|
||||
timeCreated: 1773955658
|
||||
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record UIStackChangedEvent(bool AnyUIOpen) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0d12dbbf29d274869a717b92ba55f5e6
|
||||
6
Assets/Scripts/Framework/Events/UI/UIToggleHudEvent.cs
Normal file
6
Assets/Scripts/Framework/Events/UI/UIToggleHudEvent.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
using BriarQueen.Framework.Events.System;
|
||||
|
||||
namespace BriarQueen.Framework.Events.UI
|
||||
{
|
||||
public record UIToggleHudEvent(bool Show) : IEvent;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 31d06fbeccf8341acb2c899963d5624e
|
||||
Reference in New Issue
Block a user