summaryrefslogtreecommitdiffstats
path: root/Editor/tooner.cs
Commit message (Collapse)AuthorAge
* Add 4x4 textures to ssfdyum2025-02-05
|
* Disable custom depth - breaks projectorsyum2025-02-03
|
* More SSFD tweaksyum2025-02-02
|
* Finish reproducing SSFD techyum2025-02-02
| | | | Fix gen_sdf so it normalizes all SDFs
* Begin plugging in SSFDyum2025-02-02
|
* Begin work on ssfd in lens shaderyum2025-02-01
|
* Implement surface stable fractal ditheringyum2025-02-01
|
* Add bayer matrices & grabpass-based lens shaderyum2025-01-31
|
* Add global offset to zwrite abominationyum2025-01-29
|
* Yellow abomination now faces camera and grows as it gets fartheryum2025-01-28
|
* Begin work on zwrite abominationyum2025-01-27
|
* Restore spherical boundary to fog gimmickyum2025-01-27
|
* Add ability to swap decal slotsyum2025-01-27
| | | | | | | | Also: * Rim lighting can disable texture normals * Frame counter is now hidden behind a checkbox, and unconditionally overrides audiolink
* Add LTCGI strength slideryum2025-01-22
|
* Add some options to ds2_11 (terrain gimmick)yum2025-01-22
| | | | Also chase down the weird clearcoat bug.
* Clearcoat can disable texture normalsyum2025-01-21
| | | | | | | | | | | | | | | | | Also: * terrain gimmick * makes some hardcoded shit into params * add alternative normal evaluation methods * stochastic method gives best results without getting into analytic normals * add FBM noise texture slot to improve perf * add initial raytrace to sphere * stabilizes appearance as camera moves * add backtracking * eliminates sharp lines without sacrificing perf * fog 00 can render on a plane now, in addition to cylinder * add epilepsy protection filter
* Add vector based ndotl mask to glitteryum2025-01-20
| | | | Useful for environmental modeling.
* Add UV domain warping, box discard gimmicksyum2025-01-20
| | | | | | | | | | Also: * optimize the ds2 terrain gimmick (ds2_11) * use golden ratio + blue noise on marched fog * add second sun to analytic fog * fix gcd() implementation * add faster rand2() implementation
* Add terrain gimmick (ds2_11) and analytic fog (fog01)yum2025-01-19
|
* Use quad intrinsics to compute trochoid normalsyum2025-01-17
| | | | | | | Simple algo. Use quad intrinsics to get neighboring pixels' (x & y) positions in trochoid space. Compute tangent and bitangent from that. Then normal as cross product. There's some artifacting on diagonal boundaries.
* im going to kill myselfyum2025-01-14
| | | | | | | attempt to fix hypotrochoid normals key insight is that multiplying normal by transpose(invert(jacobian)) of transform should work, but it fucking doesn't
* More fog tweaks: add animated noise, motion vectoryum2025-01-04
|
* Fog now uses object coordinatesyum2025-01-03
| | | | Also overhaul how emitter planes are specified. Use normal and tangent.
* Optimize downstairs 2 gimmick 3yum2025-01-01
|
* More work on downstairs 2 gimmicksyum2025-01-01
| | | | | | | * Use float param to select which gimmick to show * Add colors & domain warping to gimmick 2 * Also optimize it. Colors let us avoid 4-fold neighbor check fanout * Add rough/unoptimized version of gimmick 3
* Begin adding gimmicks for downstairs mapyum2024-12-30
| | | | | | | | | | | Included changes: * Update LTCGI includes * Add toggle to force world lighting * Unity fucking sucks dick and balls and doesn't set LIGHTMAP_ON consistently * Add some more sdfs for raymarching * Add separate LTCGI lighting mode for avatar vs. world
* Add domain warping to decal featureyum2024-12-16
|
* Add SDF mode to decalsyum2024-12-09
| | | | | | | | | | | Also: * add gen_sdf script, which converts solid color (ideally b&w) decals into sdf textures * add 6 more decal slots * add color, sdf options, alpha multiplier, tiling mode, and mask to decals * add token pasting macros (MERGE) to minimize code size of new decal slots
* Add second mask for rim lighting & matcapyum2024-12-05
|
* Add smoothness control to msdf font rendereryum2024-12-01
| | | | | Also rescale atlas so we can use texture sizes that are not a perfect multiple of the grid size.
* Add small programmable text display gimmickyum2024-12-01
| | | | | | | | Use Third_Party/gen_atlas to create a 512x512 texture and put it in the texture slot (the resolution is hardcoded to 512 in shader). Use sliders to control the grid size. If desired, use global offset to make it possible to linearly animate between e.g. 0-9 and have it display as ASCII '0'-'9'.
* Add cutout noise scale slideryum2024-11-30
|
* Interleaved gradient noise is now parameterized by frame countyum2024-11-26
| | | | | | | | I'm using an AAP (vrc.school/docs/Other/AAPs/) to create a frame counter. That frame counter then drives this parameter. Thus the sparkly pattern won't turn into gross flashing when the framerate is low. Also add a speed parameter to control IGN.
* Add multiply mode to pbr overlaysyum2024-11-26
|
* Add ACES filmic toggle to main shaderyum2024-11-18
|
* Add brightness clamping to fogyum2024-11-17
| | | | | Use a nice "almost identity" function to create a smooth transition to the clamped value.
* Add seed to interleaved gradient noise cutoutyum2024-11-09
|
* Add separate sliders for diffuse/direct lightingyum2024-11-09
|
* Fog domain warping now occurs in 3dyum2024-11-07
|
* Add baked normals & ltcgi to fogyum2024-11-06
|
* Fog cleanupyum2024-11-05
|
* Add toggle to light fog emitter with normalsyum2024-11-04
|
* Begin work adding normals to fogyum2024-11-04
|
* Add noise mask option to cutout shading modeyum2024-11-04
|
* Add interleaved gradient noise cutout modeyum2024-11-03
| | | | Based on screen space uvs.
* Miscyum2024-11-03
| | | | | | * Add third HSV slot * Add ZTest enum * Fix bug where SSR mask keyword can be set when SSR is disabled
* Lots of tweaksyum2024-11-03
|
* Can now specify interpolation mode on most important texturesyum2024-10-29
| | | | | | | You can select {linear,point,bilinear}x{repeat,clamp} for base pbr, overlays, and rim lighting (??) textures now. Overlay masks also tile now.
* Update cloningyum2024-10-26
| | | | | Optimize cloning logic, and make each clone rotate independently of the others when the explosion effect is active.
* Add features for constant rim lighting view directionyum2024-10-25
| | | | | Add vector to control rim lighting view dir (y does nothing) and toggle to enable doing reflection calculation in world space.