-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
132 changed files
with
4,574 additions
and
1,074 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"namespace": "GraphicsFeature", | ||
"components": { | ||
"DDGIVolume": { | ||
"graphicsEntityId": { | ||
"type": "uint", | ||
"default": -1, | ||
"hideInInspector": true | ||
}, | ||
"numProbesX": { | ||
"type": "uint", | ||
"default": 8 | ||
}, | ||
"numProbesY": { | ||
"type": "uint", | ||
"default": 8 | ||
}, | ||
"numProbesZ": { | ||
"type": "uint", | ||
"default": 8 | ||
}, | ||
"numRaysPerProbe": { | ||
"type": "uint", | ||
"default": 188 | ||
}, | ||
"relocate": { | ||
"type": "bool", | ||
"default": false, | ||
"description": "Relocate probes if they are inside geometry" | ||
}, | ||
"scrolling": { | ||
"type": "bool", | ||
"default": false, | ||
"description": "Scroll probes infinitely based on camera position" | ||
}, | ||
"updateBudget": { | ||
"type": "float", | ||
"default": 1.0, | ||
"description": "Percentage of probes to update per frame, 1.0 means 100%" | ||
}, | ||
"classify": { | ||
"type": "bool", | ||
"default": false, | ||
"description": "Automatically disable probes that hit no geometry. This is to save performance. Said probes shoot a minimal set of rays to check if they should invalidate their status" | ||
}, | ||
"irradianceScale": { | ||
"type": "float", | ||
"default": 1, | ||
"description": "Energy of output irradiance" | ||
}, | ||
"normalBias": { | ||
"type": "float", | ||
"default": 0.1, | ||
"description": "Adds distance on surface along normal direction to avoid aliasing" | ||
}, | ||
"viewBias": { | ||
"type": "float", | ||
"default": 0.1, | ||
"description": "Adds distance on surface along camera view direction to avoid aliasing" | ||
}, | ||
"distanceExponent": { | ||
"type": "float", | ||
"default": 50 | ||
}, | ||
"hysteresis": { | ||
"type": "float", | ||
"default": 0.97 | ||
}, | ||
"borderBlendCutoff": { | ||
"type": "float", | ||
"default": 0.0, | ||
"description": "Percentage distance from the volume edge where blending should start" | ||
}, | ||
"borderBlend": { | ||
"type": "float", | ||
"default": 0.0, | ||
"description": "Blend gradient factor based on cutoff point and outer edge of volume" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.