Update ControllerGroup.java

This commit is contained in:
GoToLoop 2016-07-15 04:53:17 -03:00 committed by GitHub
parent 84b09409cf
commit 8ad8ff167e
1 changed files with 3 additions and 3 deletions

View File

@ -74,15 +74,15 @@ public abstract class ControllerGroup< T extends ControllerGroup< T > >
protected final float[] autoPosition = new float[] { 10f , 30f };
protected float tempAutoPositionHeight = 0f;
protected float autoPositionOffsetX = 10f;
private String _myAddress = "";
private boolean mouseover;
protected String _myAddress = "";
protected boolean mouseover;
protected final T me = ( T ) this;
/**
* Convenience constructor to extend ControllerGroup.
*/
public ControllerGroup( ControlP5 theControlP5 , String theName ) {
this( theControlP5 , theControlP5.getDefaultTab( ) , theName , 0f , 0f );
this( theControlP5 , theControlP5.getDefaultTab( ) , theName , 0 , 0 );
cp5.register( theControlP5.papplet , theName , this );
}