Skip to content

Commit e4fa6af

Browse files
author
Takashi Sakai
committed
release v2.3.0
2 parents aaf79b7 + b80ff14 commit e4fa6af

44 files changed

Lines changed: 7659 additions & 445 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Assets/UIEffect/Demo/Demo - UIEffect.unity

Lines changed: 5779 additions & 433 deletions
Large diffs are not rendered by default.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
3+
using UnityEngine;
4+
using UnityEngine.UI;
5+
6+
namespace Coffee.UIExtensions
7+
{
8+
public class Demo_UIEffect : MonoBehaviour
9+
{
10+
[SerializeField] RectMask2D mask;
11+
12+
// Use this for initialization
13+
void Start()
14+
{
15+
if (mask)
16+
{
17+
mask.enabled = true;
18+
}
19+
}
20+
}
21+
}

Assets/UIEffect/Demo/Demo_UIEffect.cs.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/UIEffect/Demo/UIEffectDialogDemo.cs renamed to Assets/UIEffect/Demo/Demo_UIEffectDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Coffee.UIExtensions
44
{
5-
public class UIEffectDialogDemo : MonoBehaviour
5+
public class Demo_UIEffectDialog : MonoBehaviour
66
{
77
public void Open()
88
{
File renamed without changes.

0 commit comments

Comments
 (0)