「MonoGame/クラスライブラリ/VertexPositionColor構造体」の版間の差分
imported>Administrator ページの作成:「VertexPositionColor構造体は、MonoGameに標準搭載されている頂点構造体のひとつで、位置と色を持つ。 == 名前空間 == * MonoGame/クラ...」 |
imported>Administrator |
||
| 111行目: | 111行目: | ||
protected override void Initialize() | protected override void Initialize() | ||
{ | { | ||
// マウスカーソルを表示する | |||
this.IsMouseVisible = true; | |||
// ウインドウサイズを変更する | // ウインドウサイズを変更する | ||
_graphics.PreferredBackBufferWidth = 800; | _graphics.PreferredBackBufferWidth = 800; | ||
| 172行目: | 175行目: | ||
_vertices, | _vertices, | ||
vertexOffset: 0, | vertexOffset: 0, | ||
primitiveCount: | primitiveCount: _vertices.Length / 3); | ||
}; | }; | ||