lashy's full forme
This commit is contained in:
parent
aaf9278350
commit
19c8ee9566
5 changed files with 91 additions and 103 deletions
9
assets/shaders/orbit.gdshader
Normal file
9
assets/shaders/orbit.gdshader
Normal file
|
@ -0,0 +1,9 @@
|
|||
shader_type canvas_item;
|
||||
|
||||
uniform float radius = 0.0;
|
||||
uniform float speed = 0.0;
|
||||
|
||||
void vertex() {
|
||||
VERTEX.x += cos(TIME * speed) * radius;
|
||||
VERTEX.y += sin(TIME * speed) * radius;
|
||||
}
|
1
assets/shaders/orbit.gdshader.uid
Normal file
1
assets/shaders/orbit.gdshader.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://bc8j5jyjynbca
|
Loading…
Add table
Add a link
Reference in a new issue