コード例 #1
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public void UpdateAttributes(InputBox box, object[] attributes, Control control)
 {
 }
コード例 #2
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool IsValid(InputBox box, Control control)
 {
     return(control is EnumComboBox);
 }
コード例 #3
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool IsValid(InputBox box, Control control)
 {
     return(control is TypePickerControl);
 }
コード例 #4
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool IsValid(InputBox box, Control control)
 {
     return(control is CheckBox);
 }
コード例 #5
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool CanUse(InputBox box, ref ScriptType type)
 {
     return(type.IsEnum);
 }
コード例 #6
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool IsValid(InputBox box, Control control)
 {
     return(control is ColorValueBox);
 }
コード例 #7
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool CanUse(InputBox box, ref ScriptType type)
 {
     return(type.Type == typeof(Color));
 }
コード例 #8
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool CanUse(InputBox box, ref ScriptType type)
 {
     return(type.Type == typeof(Quaternion));
 }
コード例 #9
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool CanUse(InputBox box, ref ScriptType type)
 {
     return(type.Type == typeof(string) && (box.Attributes == null || box.Attributes.All(x => x.GetType() != typeof(TypeReferenceAttribute))));
 }
コード例 #10
0
ファイル: InputBox.cs プロジェクト: majianqi/FlaxEngine
 public bool CanUse(InputBox box, ref ScriptType type)
 {
     return(type.Type == typeof(float) || type.Type == typeof(double));
 }