Torque3D/Templates/BaseGame/game/core
AzaezelX ee6481153f specular code review.
the CAPTURING flag was being improperly checked for existence instead of state, leading to overbrightness in the precence of metalness. removed hacky workaround, and applied the proper fix.
also foreshortened the roughness range to avoid values outside of f0 going asymptotic.
alternative suggestion for if that portion plays up:
   surface.roughness = pbrProperties.b*0.92f+0.04f;
to
  clamp(gbuffer2.b, 0.04f, 0.96f);
(basically a case of do we support more fine-grained differences or just chuck anything too extreem)
2022-08-17 05:47:11 -05:00
..
clientServer Adjusts engine cleanup ordering on shaderFeatureMgr to avoid periodic crashes on Mac ARM machines 2022-06-05 01:21:38 -05:00
console Make the Console Sane Again 2022-04-27 21:28:49 -04:00
gameObjects Adjusted handling for the bitmap and bitmapAsset fields for guiBitmapButtonCtrl to forcefully update the button states when changed, ensuring that the bitmaps refresh when changed via the field 2022-03-26 22:36:37 -05:00
gui supress smallborderless support 2022-08-15 17:01:10 -05:00
lighting Fixes and cleans up various issues and error spam for core and tools folders 2022-03-17 02:43:18 -05:00
postFX Adjusted handling for the bitmap and bitmapAsset fields for guiBitmapButtonCtrl to forcefully update the button states when changed, ensuring that the bitmaps refresh when changed via the field 2022-03-26 22:36:37 -05:00
rendering specular code review. 2022-08-17 05:47:11 -05:00
sfx remove FMODex from Torque3D 2021-09-11 16:29:32 -04:00
utility * BugFix: Mount home:/ to refer to Torque's original Documents/<APPNAME> output for eg. prefs while leaving data:/ as an option for those that may want it. 2022-06-13 10:53:01 -04:00
core.module followup: readd, and rename the module.ScriptFile entries to thier lower case 2021-07-20 12:15:05 -05:00
core.tscript followup: readd, and rename the module.ScriptFile entries to thier lower case 2021-07-20 12:15:05 -05:00
settings.xml Updated path handling for loose asset files for CPP, Image, Level, Material, PostFX, Shape, Terrain, TerrainMat and StateMachine assets to be more predictable in when and how they expando the loose file path into a full, useable path 2020-02-04 01:47:28 -06:00