C# 클래스 UHSampleGame.CoreObjects.GameObject

파일 보기 프로젝트 열기: holtkampw/UH-Sample-XNA-Project

보호된 프로퍼티들

프로퍼티 타입 설명
game Microsoft.Xna.Framework.Game
position Vector3

공개 메소드들

메소드 설명
Draw ( GameTime gameTime ) : void

Draws various components in the game

GameObject ( ) : System
SetPosition ( Vector3 position ) : void

Sets the position of the object in 3D space

Update ( GameTime gameTime ) : void

Updates various components in the game

메소드 상세

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

Draws various components in the game
public abstract Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Current game time
리턴 void

GameObject() 공개 메소드

public GameObject ( ) : System
리턴 System

SetPosition() 공개 메소드

Sets the position of the object in 3D space
public SetPosition ( Vector3 position ) : void
position Vector3 The position to which to set the object
리턴 void

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

Updates various components in the game
public abstract Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Current game time
리턴 void

프로퍼티 상세

game 보호되어 있는 프로퍼티

The Game the object is in
protected Game,Microsoft.Xna.Framework game
리턴 Microsoft.Xna.Framework.Game

position 보호되어 있는 프로퍼티

The position of the object in 3D space
protected Vector3 position
리턴 Vector3