Project

General

Profile

« Previous | Next » 

Revision 1e672c1d

Added by Leszek Koltunski almost 4 years ago

Change 'tag' to a more appropriate name - 'association'.

View differences:

src/main/java/org/distorted/library/effect/Effect.java
48 48
  private final static float[] mUnity= new float[MAX_UNITY_DIM*NUM_EFFECTS];
49 49
  private final static int[]   mUnityDim = new int[NUM_EFFECTS];
50 50

  
51
  int mTag;
51
  int mAssociation;
52 52

  
53 53
  static boolean[] mEnabled = new boolean[NUM_EFFECTS];
54 54

  
......
67 67
    mCenterDim = name.getCenterDimension();
68 68
    mRegionDim = name.getRegionDimension();
69 69

  
70
    mTag = 0xffffffff;
70
    mAssociation = 0xffffffff;
71 71

  
72 72
    int n = name.ordinal();
73 73
    float[] u = name.getUnity();
......
140 140
 *
141 141
 * @y.exclude
142 142
 */
143
  public int getTag()
143
  public int getAssociation()
144 144
    {
145
    return mTag;
145
    return mAssociation;
146 146
    }
147 147

  
148 148
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff