Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

EditorGUI.LongField

マニュアルに切り替える
public static long LongField(Rect position, long value, GUIStyle style = EditorStyles.numberField);
public static long LongField(Rect position, string label, long value, GUIStyle style = EditorStyles.numberField);
public static long LongField(Rect position, GUIContent label, long value, GUIStyle style = EditorStyles.numberField);
public static long LongField(Rect position, string label, long value, GUIStyle style = EditorStyles.numberField);
public static long LongField(Rect position, GUIContent label, long value, GUIStyle style = EditorStyles.numberField);

パラメーター

position 表示位置
label Long Field の前に表示するオプションのラベル
value 編集する値
style オプションの GUIStyle

戻り値

long ユーザーによって設定された値

説明

Make a text field for entering long integers.