Revision c909b8e3
Added by Leszek Koltunski over 6 years ago
| src/main/java/org/distorted/effect/SizeChangeEffect.java | ||
|---|---|---|
| 70 | 70 |
private int[] mCubeEffectNumber, mNodeEffectNumber; |
| 71 | 71 |
private int[] mEffectFinished; |
| 72 | 72 |
private boolean[] mPhaseActive; |
| 73 |
private RubikCube[] mCube; |
|
| 73 | 74 |
|
| 74 |
RubikCube[] mCube; |
|
| 75 | 75 |
DistortedScreen mScreen; |
| 76 | 76 |
Effect[][] mCubeEffects; |
| 77 | 77 |
int[][] mCubeEffectPosition; |
| src/main/java/org/distorted/effect/SizeChangeEffectMove.java | ||
|---|---|---|
| 65 | 65 |
} |
| 66 | 66 |
|
| 67 | 67 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
| 68 |
// Enable all effects used in this Appear. Called by reflection from the parent class.
|
|
| 68 |
// Enable all effects used in this Effect. Called by reflection from the parent class.
|
|
| 69 | 69 |
// Matrix Effects do not have to be enabled. |
| 70 | 70 |
|
| 71 | 71 |
@SuppressWarnings("unused")
|
| src/main/java/org/distorted/effect/SizeChangeEffectNone.java | ||
|---|---|---|
| 55 | 55 |
} |
| 56 | 56 |
|
| 57 | 57 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
| 58 |
// enable all effects used in this Appear (here: none). Called by reflection from the parent class.
|
|
| 58 |
// enable all effects used in this Effect (here: none). Called by reflection from the parent class.
|
|
| 59 | 59 |
|
| 60 | 60 |
@SuppressWarnings("unused")
|
| 61 | 61 |
static void enable() |
| src/main/java/org/distorted/effect/SizeChangeEffectRound.java | ||
|---|---|---|
| 79 | 79 |
} |
| 80 | 80 |
|
| 81 | 81 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
| 82 |
// Enable all effects used in this Appear. Called by reflection from the parent class.
|
|
| 82 |
// Enable all effects used in this Effect. Called by reflection from the parent class.
|
|
| 83 | 83 |
// Matrix Effects do not have to be enabled. |
| 84 | 84 |
|
| 85 | 85 |
@SuppressWarnings("unused")
|
| src/main/java/org/distorted/effect/SizeChangeEffectScale.java | ||
|---|---|---|
| 57 | 57 |
} |
| 58 | 58 |
|
| 59 | 59 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
| 60 |
// Enable all effects used in this Appear. Called by reflection from the parent class.
|
|
| 60 |
// Enable all effects used in this Effect. Called by reflection from the parent class.
|
|
| 61 | 61 |
// Matrix Effects do not have to be enabled. |
| 62 | 62 |
|
| 63 | 63 |
@SuppressWarnings("unused")
|
| src/main/java/org/distorted/effect/SizeChangeEffectTransparency.java | ||
|---|---|---|
| 103 | 103 |
} |
| 104 | 104 |
|
| 105 | 105 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
| 106 |
// Enable all effects used in this Appear. Called by reflection from the parent class.
|
|
| 106 |
// Enable all effects used in this Effect. Called by reflection from the parent class.
|
|
| 107 | 107 |
|
| 108 | 108 |
@SuppressWarnings("unused")
|
| 109 | 109 |
static void enable() |
Also available in: Unified diff
Minor