| 1234567891011121314151617181920212223242526272829303132 |
- #include "$EDITOR$/SolidGizmo.bslinc"
- options
- {
- priority = 10;
- };
- technique SolidGizmo
- {
- mixin SolidGizmoBase;
- depth
- {
- write = false;
- read = false;
- };
-
- stencil
- {
- enabled = true;
- front = { keep, keep, inc, always };
- };
-
- blend
- {
- target
- {
- enabled = true;
- color = { srcA, srcIA, add };
- };
- };
- };
|