Add game source, converter pipeline, and web port

This commit is contained in:
2026-08-12 18:59:06 +02:00
parent 3e6635eac6
commit bd13ad67cc
97 changed files with 8781 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.jme3.animation.AnimChannel
* com.jme3.animation.AnimControl
* com.jme3.scene.Spatial
*/
package mygame;
import com.jme3.animation.AnimChannel;
import com.jme3.animation.AnimControl;
import com.jme3.scene.Spatial;
import mygame.Interactive;
public abstract class Character
extends Interactive {
public AnimChannel modelAnimChannel;
public AnimControl modelAnimControl;
public Character(String name) {
super(name);
}
public void setModel(Spatial model) {
super.setModel(model);
this.setupModelControl();
}
public abstract void setupModelControl();
}