GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Fork
: 0
root
/
DungeonShooting
Transfer to URL with SHA
Find file
Newer
Older
tree:
6b6b01e977
Branches
Tags
×
develop
DungeonShooting
/
DungeonShooting_Godot
/
resource
/
material
/ OffsetVertex.gdshader
小李xl
on 12 Nov 2023
102 bytes
测试在完美像素模式下使相机平滑移动
Raw
Blame
History
shader_type canvas_item
;
uniform vec2 offset
=
vec2
(
0.0
,
0.0
);
void
vertex
()
{
VERTEX
+=
offset
;
}