Class enchant.gl.Buffer
- Defined in: gl.enchant.js
Constructor Attributes | Constructor Name and Description |
---|---|
enchant.gl.Buffer(params, array)
頂点などの配列情報を管理する.
|
Method Summary
Method Attributes | Method Name and Description |
---|---|
bind()
バッファをバインドする.
|
|
destroy()
オブジェクトを破棄する.
|
|
unbind()
バッファをアンバインドする.
|
Class Detail
enchant.gl.Buffer(params, array)
頂点などの配列情報を管理する.
enchant.gl.Meshのプロパティとして使用される.
var index = [ 0, 1, 2, 2, 3, 0 ]; var indices = new Buffer(Buffer.INDICES, index);
- Parameters:
- {*} params
- parameter
- {Number[]} array
Method Detail
-
bind()バッファをバインドする.
-
destroy()オブジェクトを破棄する.
-
unbind()バッファをアンバインドする.