Jump to content

Extended Tileentity?


Busti

Recommended Posts

Hello,

this might be a Java question but I am new to java so please don't write "Learn Java"

I extended a TileEntity and it is working fine except for variables, when I define a Variable in the Constructor the value won't be shown in the SubClass. When i try to print the Value of the Variable I am getting NaN("Not a Number")

 

My code:

 

TileEntity:

import net.minecraft.tileentity.TileEntity;

public class TileEntity extends TileEntity {

public int var = 1;
}

SubTileentity:

import net.minecraft.tileentity.TileEntity;

public class SubTileEntity extends TileEntity {

public void updateEntity() {

	System.out.println(this.var);

}
}

 

 

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Link to comment
Share on other sites

Hello,

this might be a Java question but I am new to java so please don't write "Learn Java"

I extended a TileEntity and it is working fine except for variables, when I define a Variable in the Constructor the value won't be shown in the SubClass. When i try to print the Value of the Variable I am getting NaN("Not a Number")

 

My code:

 

TileEntity:

import net.minecraft.tileentity.TileEntity;

public class TileEntity extends TileEntity {

public int var = 1;
}

SubTileentity:

import net.minecraft.tileentity.TileEntity;

public class SubTileEntity extends TileEntity {

public void updateEntity() {

	System.out.println(this.var);

}
}

 

 

 

import net.minecraft.tileentity.TileEntity;

public class TileEntity extends TileEntity {

public int var = 1;
}

 

Why do you name your main TileEntity class the same as the vanilla one? It doesn't look good and causes confusion. But whatever, the problem is this:

import net.minecraft.tileentity.TileEntity;

public class SubTileEntity extends TileEntity {

 

Your import looks wrong. You need to import YOURPACKAGE.YOURSUBPACKAGE.TileEntity not net.minecraft.tileentity.TileEntity.

Again, if you would have named your class different, you would have seen this.

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Link to comment
Share on other sites

like SanAndreasP said, you do not want to name the class the same thing as the class you are extending.

 

Try

 

public class TileEntityA extends TileEntity {

public int var = 1;
}

 

then

 

public class SubTileEntity extends TileEntityA {

 

Think of it as a hierarchy, TileEntity -> TileEntityA -> SubTileEntity  you cannot grab a variable that is declared in TileEntityA from the base Tile Entity, but you can grab it from SubTileEntity because it extends TileEntityA.  Hope that makes sense, I'm still learning java myself.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.