Stage::getCurrentBackdropIndex()
Gibt den Index des aktuellen Hintergrunds zurück.
Beispiele
     
    
package reference;
import org.openpatch.scratch.*;
 
public class StageGetCurrentBackdropIndex {
  public StageGetCurrentBackdropIndex() {
    Stage myStage = new Stage(600, 240);
    myStage.addBackdrop("forest", "assets/background_forest.png");
    myStage.addBackdrop("sea", "assets/background_sea.png");
    myStage.display("Index: " + myStage.getCurrentBackdropIndex());
    myStage.wait(2000);
    myStage.nextBackdrop();
    myStage.display("Index: " + myStage.getCurrentBackdropIndex());
    myStage.wait(2000);
    myStage.exit();
  }
 
  public static void main(String[] args) {
    new StageGetCurrentBackdropIndex();
  }
}
 Syntax
Java
.getCurrentCostumeIndex()Scratch
backdrop [number v]
Rückgabe
int
