2
0
Mark Sibly 9 жил өмнө
parent
commit
703c10595e

+ 14 - 5
modules/mojo/graphics/image.monkey2

@@ -89,20 +89,29 @@ Class Image
 		UpdateVertices()
 	End
 	
+	Property Bounds:Rectf()
+	
+		Return _vertices
+	End
+
+	Property Radius:Float()
+	
+		Return _radius
+	End
+	
+	#rem monkeydoc @hidden
+	#end
 	Property Vertices:Rectf()
 	
 		Return _vertices
 	End
 	
+	#rem monkeydoc @hidden
+	#end
 	Property TexCoords:Rectf()
 	
 		Return _texCoords
 	End
-
-	Property Radius:Float()
-	
-		Return _radius
-	End
 	
 	Function Load:Image( path:String,shader:Shader=Null )