-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding more options to has_animation_group (#54)
- Loading branch information
Showing
7 changed files
with
43 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
mixin HasWalkSpeed { | ||
// Wether or not this is currently facing left | ||
/// Wether or not this is currently facing left | ||
bool faceLeft = false; | ||
|
||
// Wether or not walk speed should be applied | ||
/// Wether or not walk speed should be applied | ||
bool isWalking = false; | ||
|
||
// Base value for setting [walkSpeed] | ||
/// Base value for setting [walkSpeed] | ||
double baseWalkSpeed = 10; | ||
|
||
// How many units to walk per second. | ||
/// How many units to walk per second. | ||
double walkSpeed = 10; | ||
} |
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ name: leap_workspace | |
environment: | ||
sdk: '>=2.18.0 <3.0.0' | ||
dev_dependencies: | ||
melos: ^3.1.1 | ||
melos: ^6.1.0 | ||
|