Codename LogoCodename Logo

funkin.backend.shaders.CustomShader

APIWiki

Class for custom shaders.

To create one, create a shaders folder in your assets/mod folder, then add a file named my-shader.frag or/and my-shader.vert.

Non-existent shaders will only load the default one, and throw a warning in the console.

To access the shader's uniform variables, use shader.variable

Constructor

View in GitHub

@:value({ glslVersion : "120" })new(name:String, glslVersion:String = "120")

Creates a new custom shader

Parameters:

name

Name of the frag and vert files.

glslVersion

GLSL version to use. Defaults to 120.

Variables

@:value("")path:String = ""

Inherited Variables

Defined by FunkinShader

@:value("120")glslVer:String = "120"

Inherited Methods

Defined by FunkinShader

View in GitHub

hget(name:String):Dynamic

View in GitHub

hset(name:String, val:Dynamic):Dynamic