-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented voicelines. Trying to implement skidding sounds
- Loading branch information
1 parent
9ab2978
commit b2232f5
Showing
28 changed files
with
310 additions
and
101 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
4 changes: 2 additions & 2 deletions
4
src/main/java/com/floralquafloral/registries/states/MarioMajorStateDefinition.java
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
6 changes: 3 additions & 3 deletions
6
src/main/java/com/floralquafloral/registries/states/ParsedMajorMarioState.java
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,20 +1,20 @@ | ||
package com.floralquafloral.registries.states; | ||
|
||
import com.floralquafloral.CharaStat; | ||
import com.floralquafloral.stats.BaseStats; | ||
|
||
import java.util.EnumMap; | ||
|
||
public abstract class ParsedMajorMarioState extends ParsedMarioState { | ||
public final float WIDTH_FACTOR; | ||
public final float HEIGHT_FACTOR; | ||
public final EnumMap<CharaStat, Double> STAT_FACTORS; | ||
public final EnumMap<BaseStats, Double> STAT_FACTORS; | ||
|
||
protected ParsedMajorMarioState(MarioMajorStateDefinition definition) { | ||
super(definition); | ||
|
||
this.WIDTH_FACTOR = definition.getWidthFactor(); | ||
this.HEIGHT_FACTOR = definition.getHeightFactor(); | ||
this.STAT_FACTORS = new EnumMap<>(CharaStat.class); | ||
this.STAT_FACTORS = new EnumMap<>(BaseStats.class); | ||
definition.populateStatFactors(this.STAT_FACTORS); | ||
} | ||
} |
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
Oops, something went wrong.