C# 클래스 UnityEngine.RangeAttribute

상속: PropertyAttribute
파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
max float
min float

공개 메소드들

메소드 설명
RangeAttribute ( float min, float max ) : System

Attribute used to make a float or int variable in a script be restricted to a specific range.

메소드 상세

RangeAttribute() 공개 메소드

Attribute used to make a float or int variable in a script be restricted to a specific range.

public RangeAttribute ( float min, float max ) : System
min float The minimum allowed value.
max float The maximum allowed value.
리턴 System

프로퍼티 상세

max 공개적으로 프로퍼티

public float max
리턴 float

min 공개적으로 프로퍼티

public float min
리턴 float