From 783a3c0dcfb80fa016953ff141e6de12e262525e Mon Sep 17 00:00:00 2001 From: chai Date: Sun, 25 Apr 2021 19:13:28 +0800 Subject: -proflares --- Assets/ProFlares/Scripts/ProFlareAtlas.cs | 36 ------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 Assets/ProFlares/Scripts/ProFlareAtlas.cs (limited to 'Assets/ProFlares/Scripts/ProFlareAtlas.cs') diff --git a/Assets/ProFlares/Scripts/ProFlareAtlas.cs b/Assets/ProFlares/Scripts/ProFlareAtlas.cs deleted file mode 100644 index 069b88b..0000000 --- a/Assets/ProFlares/Scripts/ProFlareAtlas.cs +++ /dev/null @@ -1,36 +0,0 @@ - -/// ProFlares - v1.08- Copyright 2014-2015 All rights reserved - ProFlares.com - - -using UnityEngine; -using System.Collections.Generic; -using System; - -public class ProFlareAtlas : MonoBehaviour { - - [System.Serializable] - public class Element - { - public string name = "Flare Element"; - public Rect UV = new Rect(0f, 0f, 1f, 1f); - public bool Imported; - } - - public Texture2D texture; - - public int elementNumber = 0; - - public bool editElements = false; - - [SerializeField] public List elementsList = new List(); - - public string[] elementNameList; - - public void UpdateElementNameList(){ - elementNameList = new string[elementsList.Count]; - - for(int i = 0; i < elementNameList.Length; i++) - elementNameList[i] = elementsList[i].name; - } - -} -- cgit v1.1-26-g67d0