C# 클래스 BEPUphysicsDrawer.Models.SelfDrawingModelDisplayObject

Superclass of display types that can draw themselves. These types do not use any instancing techniques.
파일 보기 프로젝트 열기: Indiefreaks/igf 1 사용 예제들

공개 메소드들

메소드 설명
Draw ( BEPUutilities.Matrix viewMatrix, BEPUutilities.Matrix projectionMatrix ) : void

Draws the display object.

Update ( ) : void

Updates the display object.

보호된 메소드들

메소드 설명
SelfDrawingModelDisplayObject ( ModelDrawer modelDrawer ) : Microsoft.Xna.Framework

메소드 상세

Draw() 공개 추상적인 메소드

Draws the display object.
public abstract Draw ( BEPUutilities.Matrix viewMatrix, BEPUutilities.Matrix projectionMatrix ) : void
viewMatrix BEPUutilities.Matrix Current view matrix.
projectionMatrix BEPUutilities.Matrix Current projection matrix.
리턴 void

SelfDrawingModelDisplayObject() 보호된 메소드

protected SelfDrawingModelDisplayObject ( ModelDrawer modelDrawer ) : Microsoft.Xna.Framework
modelDrawer ModelDrawer
리턴 Microsoft.Xna.Framework

Update() 공개 추상적인 메소드

Updates the display object.
public abstract Update ( ) : void
리턴 void