Initial commit
This commit is contained in:
21
internal/asset/shader.go
Normal file
21
internal/asset/shader.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package asset
|
||||
|
||||
import _ "embed"
|
||||
|
||||
//go:embed shader/world.frag
|
||||
var WorldShaderFrag string
|
||||
|
||||
//go:embed shader/world.vert
|
||||
var WorldShaderVert string
|
||||
|
||||
//go:embed shader/world.shadowmap.frag
|
||||
var WorldShaderShadowmapFrag string
|
||||
|
||||
//go:embed shader/world.shadowmap.vert
|
||||
var WorldShaderShadowmapVert string
|
||||
|
||||
//go:embed shader/framewire.frag
|
||||
var FramewireShaderFrag string
|
||||
|
||||
//go:embed shader/framewire.vert
|
||||
var FramewireShaderVert string
|
||||
Reference in New Issue
Block a user