This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
namespace JFun.Gameplay.MessageSystem | |
{ | |
public static class HashMessageManager | |
{ | |
private static Dictionary<int, Delegate> _eventHashTable = new Dictionary<int, Delegate>(); | |
//Hash handlers that should never be removed, regardless of calling Cleanup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public class GyroParallaxHelper : MonoBehaviour | |
{ | |
[Header("Layer of Group Object")] | |
public RectTransform LayerObject; | |
[Header("Layer of Inner Image Object")] | |
public RectTransform LayerImage; | |
[Header("Layer of Background Object")] | |
public RectTransform LayerBackground; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Assets.SimpleAndroidNotifications; | |
using JFun.Foundation.Loggers; | |
using JFun.Framework; | |
using UnityEngine; | |
namespace JFun.Gameplay.CreateWorld | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEngine.UI; | |
using UnityEngine.EventSystems; | |
namespace JFun.Gameplay.CreateWorld.UI | |
{ | |
public class CWCustomInputField : InputField, ICancelHandler | |
{ | |
// Action others can subsribe | |
// argument 2 : true: enter key, false: cancel key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.ComponentModel; | |
using UnityEngine; | |
using System.Reflection; | |
namespace JFun.Gameplay.CreateWorld | |
{ | |
[AttributeUsage(AttributeTargets.Field)] | |
public class EnumDescriptionAttribute : PropertyAttribute | |
{ |