本文整理汇总了Java中net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer方法的典型用法代码示例。如果您正苦于以下问题:Java PacketBuffer.readNBTTagCompoundFromBuffer方法的具体用法?Java PacketBuffer.readNBTTagCompoundFromBuffer怎么用?Java PacketBuffer.readNBTTagCompoundFromBuffer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.network.PacketBuffer
的用法示例。
在下文中一共展示了PacketBuffer.readNBTTagCompoundFromBuffer方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.blockPos = buf.readBlockPos();
this.metadata = buf.readUnsignedByte();
this.nbt = buf.readNBTTagCompoundFromBuffer();
}
示例2: readTag
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Read an {@link NBTTagCompound} from the byte buffer. It uses the minecraft encoding.
*
* @param from The buffer to read from
* @return The read tag
*/
public static NBTTagCompound readTag(ByteBuf from)
{
PacketBuffer pb = new PacketBuffer(from);
try
{
return pb.readNBTTagCompoundFromBuffer();
} catch (IOException e)
{
// Unpossible?
throw Throwables.propagate(e);
}
}
示例3: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.entityId = buf.readVarIntFromBuffer();
this.tagCompound = buf.readNBTTagCompoundFromBuffer();
}