Skip to content

musaozey/MiniBind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MiniBind

Simple DataBinding framework for Unity3D

How to use

Add any binding component to gameobject and set key. Eg. Add TextBinding to an UI Text gameobject and set key to "test.text"

Before setting value of this text, add this MiniBind field to your code to use it easily:

private MiniBind.MiniBind uiContext
{
    get
    {
        return MiniBind.MBManager.Inst[MBContexts.UI_CONTEXT];
    }
}

To set value, call this code:

uiContext.SetValue("test.text", "Hello world!");

About

Simple DataBinding framework for Unity3D

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages