enum property + other script access
使用enum property BOM2 项目中需要有一个单独的script控制mode的切换,其他scipt根据这个mode切换到哪一个enum来决定该mode下的一些功能的开启。一开 始我用的是inspector的方法,在enum的script里控制enum选择的值,然后在需要做判断的script里创建一个pub
使用enum property
BOM2 项目中需要有一个单独的script控制mode的切换,其他scipt根据这个mode切换到哪一个enum来决定该mode下的一些功能的开启。一开 始我用的是inspector的方法,在enum的script里控制enum选择的值,然后在需要做判断的script里创建一个public变量来接 受enum值的变化。后来我改为完全用类的enum方法实现。
<span>//</span><span>ModeSelector.cs</span> <span>using</span><span> UnityEngine; </span><span>using</span><span> System.Collections; </span><span>public</span> <span>enum</span><span> ModeEnum { AssemblyView, TearView, ProfileView, TiffView } </span><span>public</span> <span>class</span><span> ModeSelector : MonoBehaviour { </span><span>private</span> <span>static</span> <span>int</span><span> myVar; </span><span>public</span> <span>static</span><span> ModeEnum ModeEnumProperty { </span><span>get</span> { <span>return</span><span> (ModeEnum)myVar; } </span><span>set</span> { myVar = (<span>int</span><span>)value; } } </span><span>//</span><span> Use this for initialization</span> <span>void</span><span> Start() { ModeEnumProperty </span>=<span> ModeEnum.AssemblyView; } </span><span>//</span><span> Update is called once per frame</span> <span>void</span><span> Update() { } </span><span>void</span><span> OnGUI() { </span><span>if</span> (GUI.Button(<span>new</span> Rect(Screen.width / <span>2</span> - <span>150</span>, <span>50</span>, <span>100</span>, <span>20</span>), <span>"</span><span>Tear Apart</span><span>"</span><span>)) { ModeEnumProperty </span>=<span> ModeEnum.TearView; } </span><span>if</span> (GUI.Button(<span>new</span> Rect(Screen.width / <span>2</span> + <span>50</span>, <span>50</span>, <span>100</span>, <span>20</span>), <span>"</span><span>3D Viewer</span><span>"</span><span>)) { ModeEnumProperty </span>=<span> ModeEnum.AssemblyView; } } }</span>
<span>//</span><span>NavigationControl.cs</span> <span> OnGUI() { ... </span><span>if</span>(ModeSelector.ModeEnumProperty ==<span> ModeEnum.AssemblyView) { </span><span>//</span><span>something to do</span> <span> } ... }</span>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use the enum module to define enumeration types in Python2.x Introduction: An enumeration is a data type that limits the value of a variable to a limited range. Using enumeration types can make the code clearer and more readable. In Python2.x, we can use the enum module to define enumeration types. This article will introduce how to use the enum module to define and use enumeration types, and give corresponding code examples. Importing the enum module Before using the enum module, you first need to import the module. exist

PHPNotice: Tryingtogetpropertyofnon-object-Solution During the PHP development process, we may encounter a common error message: Tryingtogetpropertyofnon-object (trying to get the property of a non-object). This error is usually caused when we try to access a property (or call a method) on a variable that is not an object type. This article will introduce you to this

When writing code in PHP, we may encounter the error message "Notice: Undefinedproperty". This error means that we are accessing an undefined property, usually because the property has not been initialized in the code. So, how to solve this problem? Here are a few possible solutions: Initialize properties This is the simplest way to solve this problem. Explicitly initializing a property in code ensures that it is defined before use. For example: class

Script means script or script. In film, television, drama and other art forms, script is used to describe the dialogue, actions and scenes of characters, as well as the development and structure of the story. Script writing requires certain skills and experience, and it should be vivid and powerful, capable of attracting the audience's attention and conveying the emotions and themes of the story. Scripts are particularly important in the film and television industries. They are the basis of creation and determine the storyline, character development and dialogue content of the film. Script is an important tool for artists to create and express themselves.

Vue is a popular JavaScript framework for building user interfaces. During the development process, we may encounter various errors and exceptions. One of the common errors is "TypeError:Cannotreadproperty'XXX'ofnull". In this article, we will explore the causes of this error and how to fix it. First, let’s understand the reason behind this error. When we try to access a property or method of an object, if the pair

In C#, the enumeration type is a very useful data type that allows us to define some constants to represent certain states or options. Once the enum type is defined, you can use the Enum.GetNames function to get all defined names. This article details how to use this function and provides specific code examples. What is the Enum.GetNames function The Enum.GetNames function is a static method that returns an array of strings of the specified enumeration type, where each string represents the

TypeError:Cannotreadproperty'$XXX'ofundefined in Vue, what are the solutions? In Vue development, errors such as TypeError:Cannotreadproperty'$XXX'ofundefined are often encountered. This error is usually caused by using undefined properties or methods in the Vue instance. When this error occurs, we need to

In the field of computer science, "script" usually refers to a scripting language or script file. A scripting language is an interpreted programming language commonly used for tasks such as automation, batch processing, and rapid prototyping.
