Difference between revisions of "Mesh:getVertexAttribute (日本語)"

(Created page with "{{newin (日本語)|0.10.0|100|type=関数}} Mesh において頂点内にある特定属性の特性を取得します。 love.graphics.newMesh|love.graphics.newMesh (...")
 
m (引数)
 
Line 11: Line 11:
  
 
=== 引数 ===
 
=== 引数 ===
{{param|number|vertexindex|変更を行う頂点の索引。}}
+
{{param|number|vertexindex|属性の取得を行う頂点の索引 (基数は 1 です)。}}
{{param|number|attributeindex|変更を行う頂点にある属性の索引。}}
+
{{param|number|attributeindex|取得を行う頂点にある属性の索引 (基数は 1 です)。}}
 +
 
 
=== 返値 ===
 
=== 返値 ===
 
{{param|number|value1|属性の第一要素に対する値。}}
 
{{param|number|value1|属性の第一要素に対する値。}}

Latest revision as of 06:25, 5 July 2019

LÖVE 0.10.0 から使用可能
この関数は以前のバージョンでは非対応です。

Mesh において頂点内にある特定属性の特性を取得します。

love.graphics.newMesh (日本語) によりカスタム頂点形式で指定された Mesh を除き、 最初の属性は位置を、二番目の属性はテクスチャ座標を、そして三番目の属性は色を有しています。

関数

概要

value1, value2, ... = Mesh:getVertexAttribute( vertexindex, attributeindex )

引数

number vertexindex
属性の取得を行う頂点の索引 (基数は 1 です)。
number attributeindex
取得を行う頂点にある属性の索引 (基数は 1 です)。

返値

number value1
属性の第一要素に対する値。
number value2
属性の第二要素に対する値。
number ...
任意による追加の頂点属性要素。

関連


そのほかの言語