コード例 #1
0
ファイル: Canvas.cs プロジェクト: dgi09/2DGameEngine
 public void DrawTexturePart(Texture texture,Rect dstRect,Rect srcRect,int rotation)
 {
     _canvasDrawTexturePart(ptr, texture.GetInternalPtr(), dstRect, srcRect, rotation);
 }
コード例 #2
0
ファイル: Canvas.cs プロジェクト: dgi09/2DGameEngine
 public void DrawTextureFull(Texture texture, Rect dstRect, int rotationAngle)
 {
     _canvasDrawTextureFull(ptr, texture.GetInternalPtr(), dstRect, rotationAngle);
 }