Scratch für Java

Stage::getCurrentBackdropIndex()

Gibt den Index des aktuellen Hintergrunds zurück.

Beispiele

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();
  }
}
 

Auf GitHub anschauen

Syntax

Java

.getCurrentCostumeIndex()

Scratch

backdrop [number v]

Rückgabe

int

getCurrentBackdropIndex()