Skip to content

C-like (and GLSL-like) Substance Designer programming language

License

Notifications You must be signed in to change notification settings

krista-koivisto/snix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Snix

Snix is a C-like programming language for creating Allegorithmic Substance Designer functions through code instead of nodes. Very useful when wanting to create more complex functions or converting GLSL shader code to Substance Designer functions.

Powered by Snixel.

Sample

float DegToRad(float angle)
{
    float pi = 3.14159f;
    return (angle * pi / 180.0f);
}

float RadToDeg(float rad)
{
    float pi = 3.14159f;
    return rad * 180.0f / pi;
}

About

C-like (and GLSL-like) Substance Designer programming language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages