mirror of
https://inf.pirckheimer-gymnasium.de/kebab/kebab
synced 2026-08-26 16:31:23 +00:00
UNFERTIG
This commit is contained in:
@@ -16,7 +16,6 @@ public class LoadingScene extends Scene
|
|||||||
private Image tatli;
|
private Image tatli;
|
||||||
|
|
||||||
public LoadingScene() {
|
public LoadingScene() {
|
||||||
|
|
||||||
title = new Text("Royal Kebab");
|
title = new Text("Royal Kebab");
|
||||||
subtitle_content = "Loading";
|
subtitle_content = "Loading";
|
||||||
subtitle = new Text(subtitle_content);
|
subtitle = new Text(subtitle_content);
|
||||||
|
|||||||
@@ -1,8 +1,27 @@
|
|||||||
package project.scenes;
|
package project.scenes;
|
||||||
|
|
||||||
|
import pi.Camera;
|
||||||
import pi.Scene;
|
import pi.Scene;
|
||||||
|
import pi.actor.Image;
|
||||||
|
|
||||||
public class StartScene extends Scene
|
public class StartScene extends Scene
|
||||||
{
|
{
|
||||||
|
Image money;
|
||||||
|
Image kebabSold;
|
||||||
|
Image waitingCustomers;
|
||||||
|
|
||||||
|
public StartScene() {
|
||||||
|
money = new Image("images/pixui-pack/Buttons/Button_White_Outline (9).png");
|
||||||
|
money.anchor(-10, 25);
|
||||||
|
kebabSold = new Image("images/pixui-pack/Buttons/Button_White_Outline (7).png");
|
||||||
|
kebabSold.anchor(0, 25);
|
||||||
|
waitingCustomers = new Image("images/pixui-pack/Buttons/Button_White_Outline (9).png");
|
||||||
|
waitingCustomers.anchor(7, 25);
|
||||||
|
|
||||||
|
camera().meter(10);
|
||||||
|
|
||||||
|
add(money);
|
||||||
|
add(kebabSold);
|
||||||
|
add(waitingCustomers);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
// -> https://github.com/engine-pi/engine-pi/blob/main/subprojects/demos/src/main/java/demos/small_games/dude/Platform.java
|
||||||
Reference in New Issue
Block a user