public GodotVector3 Floor()
 {
     return(new GodotVector3(GodotMathf.Floor(x), GodotMathf.Floor(y), GodotMathf.Floor(z)));
 }
示例#2
0
 public GodotVector2 Floor()
 {
     return(new GodotVector2(GodotMathf.Floor(x), GodotMathf.Floor(y)));
 }