I'm working on a mod, but I'm having troubles creating the models I need, since I can't find modelling software that works on my computer (running Ubuntu linux) and that can generate java code for 1.7 mods.
The only modelling software I found that can generate 1.7 compatible java code is techne, and techne doesn't work on this computer, not even when I run it in a windows compatibility layer.
So, does anyone know what modelling software I should use instead, or a way to install techne on a linux computer?
I tried that one as well, but it didn't seem to work, as clicking on any of the buttons does nothing, and opening someone else's model in the editor gives me an error 404.
It does run on my computer, but I couldn't get the model to render (it only shows the shadow of the mob). Or am I using the generated code incorrectly?
import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
public class ModelBear extends ModelBase{
public ModelBear(){
/*
* ORIGINAL GENERATED CODE BELOW
//variables init:
public ModelRenderer box;
//constructor:
box = new ModelRenderer(0, 0);
box.addBox(-8F, 0F, -8F, 16, 16, 16);
//render:
box.render(f5);
*/
//modified code to fix errors
//variables init:
ModelRenderer box;
//constructor:
box = new ModelRenderer(this, 0, 0);
box.addBox(-8F, 0F, -8F, 16, 16, 16);
//render:
box.render(5f);
}
}
I'm working on a mod, but I'm having troubles creating the models I need, since I can't find modelling software that works on my computer (running Ubuntu linux) and that can generate java code for 1.7 mods.
The only modelling software I found that can generate 1.7 compatible java code is techne, and techne doesn't work on this computer, not even when I run it in a windows compatibility layer.
So, does anyone know what modelling software I should use instead, or a way to install techne on a linux computer?
Many thanks in advance.
I tried that one as well, but it didn't seem to work, as clicking on any of the buttons does nothing, and opening someone else's model in the editor gives me an error 404.
Yes, Wine/playonlinux. WITH the nessicary programs installed to use the .application file the techne downloader gave me.
FMCModeller is written in Adobe Flash so that should work fine for you.