summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Fix clearcoatyum2024-12-16
|
* Add domain warping to decal featureyum2024-12-16
|
* Fix smooth_minyum2024-12-10
| | | | | | | | | | The old smooth_min(x, k) had the properties smooth_min(1, k) = k smooth_min(inf, k) = 1 Now it's smooth_min(x, k, j) with the properties smooth_min(1, k, j) = k smooth_min(inf, k, j) = j
* 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
|
* Fix gen_atlasyum2024-11-30
| | | | | | Now it generates things in a fixed-sized grid which is derived from charset's max codepoint. It does not interleave gaps, instead putting a big gap at the end/bottom of the atlas.
* Begin work generating an msdf atlas indexed by ascii codepointyum2024-11-30
| | | | Trying to beat claude 3.5 into submission. Little issues with placement.
* 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
|
* Refactor tonemapping curves into their own headersyum2024-11-18
| | | | Also add iq's "almost identity" curve.
* Update function nameyum2024-11-17
| | | | Aces filmic is more accurate than just "aces".
* Add brightness clamping to fogyum2024-11-17
| | | | | Use a nice "almost identity" function to create a smooth transition to the clamped value.
* Add ACES tonemapping to fogyum2024-11-16
| | | | Looks better lol
* Fox texture samples now use pointyum2024-11-16
| | | | Small perf win
* Add seed to interleaved gradient noise cutoutyum2024-11-09
|
* Add separate sliders for diffuse/direct lightingyum2024-11-09
|
* Tweak fog diffuseyum2024-11-08
| | | | Average LODs 9 and 11.
* Optimize fog againyum2024-11-08
| | | | | Drop fbm, it doesn't contribute as much visual interest per FLOP as domain warping.
* Fog domain warping now occurs in 3dyum2024-11-07
|
* Fog tweaksyum2024-11-07
|
* Begin experimenting with domain warpingyum2024-11-06
|
* Add baked normals & ltcgi to fogyum2024-11-06
|
* Fog cleanupyum2024-11-05
|
* Add toggle to light fog emitter with normalsyum2024-11-04
|
* Add fog normalsyum2024-11-04
| | | | | Uses iquilez's directional derivative model and a simplified lighting model. Lighting is evaluated at each sample.
* oopsyum2024-11-04
|
* Begin work adding normals to fogyum2024-11-04
|
* Specular lighting now wrapsyum2024-11-04
|
* 3d white noise generator now supports different dimensionalityyum2024-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
|
* Fix energy preservation in emitter samplingyum2024-11-03
| | | | Lower step sizes would gain energy.
* hack: Apply interleaved gradient noise to direct lightyum2024-11-02
| | | | This minimizes color banding due to dim direct lighting
* idk why this was offyum2024-11-02
|
* Fog uses interleaved gradient noise instead of white noiseyum2024-11-02
| | | | | This lets us use a much higher step size before noise becomes too gross to look at.
* Step size no longer depends on densityyum2024-11-02
|
* Remove redundant saturateyum2024-11-02
|
* 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.
* Bugfixesyum2024-10-28
| | | | | | * rl polar mask now works without quantization * optimize_interpolators is now a local feature (no ui yet) * `audiolink chroma` feature causes audiolink to import
* Begin optimizing gerstner demoyum2024-10-26
|
* 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.
* add water stuffyum2024-10-24
|
* Refine origin damping behavior, fix normals precisionyum2024-10-23
| | | | 1E-3 is much too coarse for normal calculation.