mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-06 02:05:34 +01:00
7 lines
209 B
Text
7 lines
209 B
Text
![]() |
function __3dGizmoLine(from, to, color = c_white, alpha = 1) : __3dGizmo() constructor {
|
||
|
vertex = [
|
||
|
[ from.x, from.y, from.z, color, alpha ],
|
||
|
[ to.x, to.y, to.z, color, alpha ],
|
||
|
];
|
||
|
VB = build();
|
||
|
}
|