mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
19133ca97f
- New UV remap node
24 lines
695 B
Plaintext
24 lines
695 B
Plaintext
function __3dGizmoPlane(radius = 0.5, color = c_white, alpha = 1) : __3dGizmo() constructor {
|
|
object_counts = 2;
|
|
|
|
vertex = [
|
|
[
|
|
new __vertex( -radius, -radius, 0, color, alpha ),
|
|
new __vertex( -radius, radius, 0, color, alpha ),
|
|
|
|
new __vertex( -radius, radius, 0, color, alpha ),
|
|
new __vertex( radius, radius, 0, color, alpha ),
|
|
|
|
new __vertex( radius, radius, 0, color, alpha ),
|
|
new __vertex( radius, -radius, 0, color, alpha ),
|
|
|
|
new __vertex( radius, -radius, 0, color, alpha ),
|
|
new __vertex( -radius, -radius, 0, color, alpha ),
|
|
],
|
|
[
|
|
new __vertex( 0, 0, 0, color, alpha ),
|
|
new __vertex( 0, 0, 1, color, alpha ),
|
|
]
|
|
];
|
|
VB = build();
|
|
} |