The simplest single-chain MVC

Source: Internet
Author: User

1.Model

usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;usingUnityengine; Public classModel:monobehaviour { Public intLevel ;  Public intCoin;  Public StaticModel instead;  Public voidAwake () {instead= This; }    //level     Public intPlayerLevel {Get        {            returnLevel ; }        Set{ level=value; }    }    //Gold coins     Public intPlayercoin {Get        {            returnCoin; }Set{Coin=value; }    }}

2.View

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityengine;usingUnityengine.ui; Public classView:monobehaviour { PublicText level;  PublicText Coin; //Update is called once per frame    voidUpdate () {Level.text=Model.instead.Level.ToString (); Coin.text=Model.instead.Coin.ToString (); }     }

3.Controller

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityengine; Public classController:monobehaviour { Public StaticController instead;  Public voidAwake () {instead= This; }    //Use this for initialization    voidStart () {}//Update is called once per frame    voidUpdate () {} Public voidChangelevel () {Model.instead.PlayerLevel++; }     Public voidChangecoin () {Model.instead.PlayerCoin+=Ten; }}

The simplest single-chain MVC

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.