Language version: | ActionScript 3.0 |
Defines the values to use for sampler wrap mode
public static const CLAMP:String = "clamp"
Language version: | ActionScript 3.0 |
Clamp texture coordinates outside the 0..1 range.
The function is x = max(min(x,0),1)
public static const CLAMP_U_REPEAT_V:String = "clamp_u_repeat_v"
Clamp in U axis but Repeat in V axis.
public static const REPEAT:String = "repeat"
Language version: | ActionScript 3.0 |
Repeat (tile) texture coordinates outside the 0..1 range.
The function is x = x<0?1.0-frac(abs(x)):frac(x)
public static const REPEAT_U_CLAMP_V:String = "repeat_u_clamp_v"
Repeat in U axis but Clamp in V axis.
© 2004-2022 Adobe Systems Incorporated. All rights reserved.
Wed Sep 28 2022, 6:12 PM GMT+01:00