Add game source, converter pipeline, and web port
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user