コード例 #1
0
 public void AddDistanceAboveSurface(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
 }
コード例 #2
0
ファイル: ActionType.cs プロジェクト: lickey10/u_Behaviors
 public void AddCertainty(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Element, "", "Certainty", newValue.ToString());
 }
コード例 #3
0
 public void ReplaceresxAt(SchemaDecimal newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
 }
コード例 #4
0
 public void InsertresxAt(SchemaDecimal newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
 }
コード例 #5
0
 public void Addresx(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "resx", newValue.ToString());
 }
コード例 #6
0
ファイル: ConstantType.cs プロジェクト: lickey10/u_Behaviors
 public void AddFloat2(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Element, "", "Float", newValue.ToString());
 }