Skip to content

UnSkyToo/LiteFramework

Repository files navigation

LiteFramework

LiteFramework For Unity3D
Version 20.04.01.1

Demo Unity Project https://github.com/UnSkyToo/LiteMore

UI Auto Binder

[LiteUINode("xxx")]
Transform Node;
or
Node = FindChild("xxx");

[LiteUIComponent(xxx)]
Image Node;
or
Node = GetComponent("xxx");

[LiteUIEvent(xxx, event type)]
void OnClick(){}
or
AddEventToChild(xxx, OnClick);