Project

General

Profile

« Previous | Next » 

Revision a8295031

Added by Leszek Koltunski almost 2 years ago

Introduce InitData, a data structure used to initialize a TwistyObject.
Current (optional) members: int[] numLayers, int param [intended: type of the Crazy 3x3 planet], float[][] pos [position of a bandaged cube] )

View differences:

src/main/java/org/distorted/objectlib/objects/TwistyRedi.java
29 29

  
30 30
import org.distorted.objectlib.helpers.ObjectFaceShape;
31 31
import org.distorted.objectlib.helpers.ObjectSignature;
32
import org.distorted.objectlib.main.InitData;
32 33
import org.distorted.objectlib.touchcontrol.TouchControlHexahedron;
33 34
import org.distorted.objectlib.main.ObjectType;
34 35
import org.distorted.objectlib.helpers.ObjectShape;
......
54 55

  
55 56
///////////////////////////////////////////////////////////////////////////////////////////////////
56 57

  
57
  public TwistyRedi(int[] numL, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
58
  public TwistyRedi(InitData data, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
58 59
    {
59
    super(numL, meshState, iconMode, numL[0], quat, move, scale, stream);
60
    super(data, meshState, iconMode, data.getNumLayers()[0], quat, move, scale, stream);
60 61
    }
61 62

  
62 63
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff