ncannasse / hxsl

Haxe Shader Language, a high level 3D shader language for Haxe
86 stars 10 forks source link

Allow store in Bool params null/true/false #12

Open profelis opened 11 years ago

profelis commented 11 years ago

Now boolean params can't contains null value

profelis commented 11 years ago

Plus now you use

var zBias : Float; var hasZBias : Bool;

what can be replaced with

var zBias : Null<Float>;

ncannasse commented 11 years ago

Yes it's planned, but not yet done ;)