summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IRenderObject.cs
blob: 1d8b30b191a2687129a8dddca7c7f5f60d811fc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using UnityEngine;

namespace XUtliPoolLib
{
	public interface IRenderObject
	{
		int InstanceID { set; }

		bool IsSameObj(int id);

		void SetRenderLayer(int layer);

		void SetShader(int type);

		void ResetShader();

		void SetColor(byte r, byte g, byte b, byte a);

		void SetColor(Color32 c);

		void Clean();

		void Update();
	}
}