Revision ca5bd228
Added by Leszek Koltunski almost 2 years ago
src/main/java/org/distorted/objectlib/main/ObjectSignatures.java | ||
---|---|---|
54 | 54 |
public static final int BAN2_3 = ObjectType.BAN2_3.ordinal(); |
55 | 55 |
public static final int BAN3_3 = ObjectType.BAN3_3.ordinal(); |
56 | 56 |
public static final int BAN4_3 = ObjectType.BAN4_3.ordinal(); |
57 |
public static final int BAN5_3 = ObjectType.BAN5_3.ordinal();
|
|
57 |
public static final int BAN5_4 = ObjectType.BAN5_4.ordinal();
|
|
58 | 58 |
public static final int SQU1_3 = ObjectType.SQU1_3.ordinal(); |
59 | 59 |
public static final int SQU2_3 = ObjectType.SQU2_3.ordinal(); |
60 | 60 |
public static final int WIND_3 = ObjectType.WIND_3.ordinal(); |
src/main/java/org/distorted/objectlib/main/ObjectType.java | ||
---|---|---|
99 | 99 |
DINO_3 ( TwistyDino6.class , 10, R.drawable.dino_3, true, 0, new InitData(new int[] {3,3,3,3})), |
100 | 100 |
DIN4_3 ( TwistyDino4.class , 9, R.drawable.din4_3, true, 30, new InitData(new int[] {3,3,3,3})), |
101 | 101 |
|
102 |
BAN5_3 ( TwistyBandagedCuboid.class , 48, R.drawable.ban5_3, true, 50, new InitData(new int[] {4,4,4}, TwistyBandagedCuboid.POS_5)),
|
|
102 |
BAN5_4 ( TwistyBandagedCuboid.class , 48, R.drawable.ban5_3, true, 50, new InitData(new int[] {4,4,4}, TwistyBandagedCuboid.POS_5)),
|
|
103 | 103 |
|
104 | 104 |
PDUO_2 ( TwistyPyraminxDuo.class , 4, R.drawable.pduo_2, false, 0, new InitData(new int[] {2,2,2,2})), |
105 | 105 |
PDIA_3 ( TwistyPyraminxDiamond.class, 12, R.drawable.pdia_3, false, 40, new InitData(new int[] {3,3,3})), |
src/main/java/org/distorted/objectlib/objects/TwistyBandagedCuboid.java | ||
---|---|---|
702 | 702 |
if( mPosition==POS_2 ) return ObjectType.BAN2_3.name(); |
703 | 703 |
if( mPosition==POS_3 ) return ObjectType.BAN3_3.name(); |
704 | 704 |
if( mPosition==POS_4 ) return ObjectType.BAN4_3.name(); |
705 |
if( mPosition==POS_5 ) return ObjectType.BAN5_3.name();
|
|
705 |
if( mPosition==POS_5 ) return ObjectType.BAN5_4.name();
|
|
706 | 706 |
|
707 | 707 |
if( mSignature==null ) mSignature = getSignature(); |
708 | 708 |
int[] numLayers = getNumLayers(); |
Also available in: Unified diff
AI Cube: rename BAN5_3 to BAN5_4