1
DotNet / Re: Spriteoverlapping
« on: May 05, 2012, 10:40:15 pm »
Ah. Updating to 2.0 solved this issue
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
For x As Integer = 0 To 20
For y As Integer = 0 To 20
Dim image As New Graphics.Sprite(i)
image.Position = New Graphics.Vector2((x * 15), (y * 15))
RenderWindow.Draw(image)
image.Dispose()
Next
Next