UNPKG
laya-coreui-es
Version:
latest (0.0.2)
0.0.2
0.0.1
laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改
laya-coreui-es
/
build
/
es
/
layaAir
/
laya
/
webgl
/
shader
/
d2
/
value
/
PrimitiveSV.js
9 lines
(8 loc)
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Value2D
}
from
"./Value2D"
;
import
{
ShaderDefines2D
}
from
"../ShaderDefines2D"
;
export
class
PrimitiveSV
extends
Value2D
{
constructor
(
args
) {
super
(
ShaderDefines2D
.
PRIMITIVE
,
0
);
this
.
_attribLocation
= [
'position'
,
0
,
'attribColor'
,
1
]; } }