-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3590 from Kherae/master
backend fixes and stuff
- Loading branch information
Showing
121 changed files
with
987 additions
and
956 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
require "/stats/effects/fu_statusUtil.lua" | ||
|
||
function init() | ||
animator.setParticleEmitterOffsetRegion("yellow", mcontroller.boundBox()) | ||
animator.setParticleEmitterActive("yellow", true) | ||
animator.setParticleEmitterOffsetRegion("cyan", mcontroller.boundBox()) | ||
animator.setParticleEmitterActive("cyan", true) | ||
animator.setParticleEmitterOffsetRegion("yellow", mcontroller.boundBox()) | ||
animator.setParticleEmitterActive("yellow", true) | ||
animator.setParticleEmitterOffsetRegion("cyan", mcontroller.boundBox()) | ||
animator.setParticleEmitterActive("cyan", true) | ||
end | ||
|
||
function update(dt) | ||
mcontroller.controlModifiers({ | ||
groundMovementModifier = 0.75, | ||
runModifier = 0.75, | ||
jumpModifier = 0.5 | ||
}) | ||
applyFilteredModifiers({ | ||
groundMovementModifier = 0.75, | ||
speedModifier = 0.75, | ||
airJumpModifier = 0.5 | ||
}) | ||
end | ||
|
||
function uninit() | ||
filterModifiers({},true) | ||
end |
Oops, something went wrong.