This file contains hidden or 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
| /** | |
| * Generates project changelog using github-changelog-generator | |
| * https://github.com/github-changelog-generator/github-changelog-generator | |
| */ | |
| tasks.register("generateChangelog", Exec.class) { | |
| it.description 'Generate a project changelog.' | |
| it.group 'documentation' | |
| def commandArgs = [ |
This file contains hidden or 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
| ---Returns fog instance. | |
| ---@return ClimateManager.ClimateFloat | |
| local function getFogIntensity() | |
| return getClimateManager():getClimateFloat(5); | |
| end | |
| ---Update fog intensity with given value | |
| ---@param value Float | |
| local function updateFogIntensity(value) |
OlderNewer