wiki.sine.space | sinespace

Difference between revisions of "Scripting/SMaterial"

From wiki.sine.space
Jump to: navigation, search
(Created page with "The SMaterial class provides a wrapper around Materials used for rendering ==Members== {{ScriptFunction|void|SetFloat|(string name, float value);|Sets a shader property to va...")
 
(Replaced content with "This page has moved to: https://docs.sine.space/v/scripting/client-scripting/types/smaterial")
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
The SMaterial class provides a wrapper around Materials used for rendering
+
This page has moved to: https://docs.sine.space/v/scripting/client-scripting/types/smaterial
 
+
==Members==
+
{{ScriptFunction|void|SetFloat|(string name, float value);|Sets a shader property to value}}
+
{{ScriptFunction|void|SetColor|(string name, float r, float g, float b, float a);|Sets a shader colour to value (HDR variant, 0..1 values)}}
+
{{ScriptFunction|void|SetColor32|(string name, byte r, byte g, byte b, byte a);|Sets a shader colour to value (32-bit, 0..255 values)}}
+
{{ScriptFunction|void|SetInt|(string name, int value);|Sets a shader property to value}}
+
{{ScriptFunction|void|SetTexture|(string name, SResource texture);|Sets a texture to one provided by a resource}}
+
{{ScriptFunction|void|SetTextureOffset|(string name, float x, float y);|Sets a texture offset to a value. '''IF USING FOR SCROLLING ANIMATION PLEASE US A ANIMATION NOT A SCRIPT'''}}
+
{{ScriptFunction|void|SetTextureScale|(string name, float x, float y);|Sets a texture scale to a value. '''IF USING FOR SCROLLING ANIMATION PLEASE US A ANIMATION NOT A SCRIPT'''}}
+
{{ScriptFunction|void|SetVector|(string name, SVector value);|Sets a shader property to value}}
+
 
+
{{Scripting Navbox}}
+

Latest revision as of 08:02, 19 September 2022

This page has moved to: https://docs.sine.space/v/scripting/client-scripting/types/smaterial