Jump to content

Render not working


Cyanki

Recommended Posts

So I make a Block,when player use it int Debug in BlockEntity add one and print it with System.out.println(entity.Debug);

For some reason the BlockEntity print 1 while BlockEntityRenderer print 0

Registration:

@Mod(ExtraSpicy.MOD_ID)
public class ExtraSpicy
{
    // Directly reference a log4j logger.
    public static final String MOD_ID = "extraspicy";
    private static final Logger LOGGER = LogManager.getLogger();

    public ExtraSpicy() {
        FMLJavaModLoadingContext.get().getModEventBus().addListener(this::AttributeRegister);
        FMLJavaModLoadingContext.get().getModEventBus().addListener(this::ModelRegister);
        FMLJavaModLoadingContext.get().getModEventBus().addListener(this::LayerRegister);
        FMLJavaModLoadingContext.get().getModEventBus().addListener(this::RenderRegister);
        Registration.register();
        MinecraftForge.EVENT_BUS.register(this);
    }
    //Register Model Layer Render here!!!
    public void AttributeRegister(EntityAttributeCreationEvent event){
        event.put(Registration.Entity_exoft.get(), ExoFT.createMobAttributes().build());
    }
    public void ModelRegister(ModelRegistryEvent event)
    {
        ForgeModelBakery.addSpecialModel(new ResourceLocation(ExtraSpicy.MOD_ID,"effect/sphere"));
        ForgeModelBakery.addSpecialModel(new ResourceLocation(ExtraSpicy.MOD_ID,"effect/invsphere"));
    }
    public void LayerRegister(EntityRenderersEvent.RegisterLayerDefinitions event){
        event.registerLayerDefinition(ExoTridentModel.LAYER_LOCATION,ExoTridentModel::createBodyLayer);
        event.registerLayerDefinition(ExoFTModel.LAYER_LOCATION,ExoFTModel::createBodyLayer);
    }
    public void RenderRegister(EntityRenderersEvent.RegisterRenderers event)
    {
        event.registerBlockEntityRenderer(Registration.BlockEntity_electrolysis.get(), ElectrolysisRender::new);
        EntityRenderers.register(Registration.Entity_exotrident.get(), ExoTridentRender::new);
        EntityRenderers.register(Registration.Entity_exoft.get(), ExoFTRender::new);
    }
}
public class Registration {
    public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, ExtraSpicy.MOD_ID);
    public static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, ExtraSpicy.MOD_ID);
    public static final DeferredRegister<EntityType<?>> ENTITY = DeferredRegister.create(ForgeRegistries.ENTITIES, ExtraSpicy.MOD_ID);
    public static final DeferredRegister<BlockEntityType<?>> Block_ENTITY = DeferredRegister.create(ForgeRegistries.BLOCK_ENTITIES, ExtraSpicy.MOD_ID);

    public static void register(){
        IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();
        BLOCKS.register(modEventBus);
        ITEMS.register(modEventBus);
        ENTITY.register(modEventBus);
        Block_ENTITY.register(modEventBus);
    }
    //Register Item Entity Tab here!!!
    public static final CreativeModeTab TAB = new CreativeModeTab(ExtraSpicy.MOD_ID) {
        @Nonnull
        @Override
        public ItemStack makeIcon() {
            return new ItemStack(Item_exocore.get());
        }
    };
    public static RegistryObject<Block> Block_electrolysis = BLOCKS.register("electrolysis",() -> new Electrolysis(BlockBehaviour.Properties.copy(Blocks.QUARTZ_BLOCK).noOcclusion().dynamicShape()));

    public static RegistryObject<Item> Item_coke = ITEMS.register("coke",() -> new Item(new Item.Properties().tab(TAB)));
    public static RegistryObject<Item> Item_quartzcoke = ITEMS.register("quartzcoke",() -> new Item(new Item.Properties().tab(TAB)));
    public static RegistryObject<Item> Item_silicon = ITEMS.register("silicon",() -> new Item(new Item.Properties().tab(TAB)));
    public static RegistryObject<Item> Item_exocoreshell = ITEMS.register("exo_core_shell",() -> new Item(new Item.Properties().tab(TAB)));
    public static RegistryObject<Item> Item_exocore = ITEMS.register("exo_core",() -> new Item(new Item.Properties().tab(TAB)));
    public static RegistryObject<Item> Item_exotrident = ITEMS.register("exo_trident", () -> new ExoTrident());
    public static RegistryObject<Item> Item_block_electrolysis = ITEMS.register("electrolysis",() -> new BlockItem(Block_electrolysis.get(), new Item.Properties().tab(TAB)));

    public static final RegistryObject<BlockEntityType<ElectrolysisEntity>> BlockEntity_electrolysis = Block_ENTITY.register("electrolysis",() -> BlockEntityType.Builder.of(ElectrolysisEntity::new, Registration.Block_electrolysis.get()).build(null));

    public static RegistryObject<EntityType<ExoTridentEntity>> Entity_exotrident = ENTITY.register("exo_trident_entity",() ->  EntityType.Builder.<ExoTridentEntity>of(ExoTridentEntity::new, MobCategory.MISC).sized(0.5F, 0.5F).clientTrackingRange(4).updateInterval(20).build(new ResourceLocation(ExtraSpicy.MOD_ID, "exo_trident_entity").toString()));
    public static RegistryObject<EntityType<ExoFT>> Entity_exoft = ENTITY.register("exo_ft",() -> EntityType.Builder.<ExoFT>of(ExoFT::new, MobCategory.MISC).sized(0.5F, 0.5F).fireImmune().build(new ResourceLocation(ExtraSpicy.MOD_ID, "exo_ft").toString()));
}

Block:

public class Electrolysis extends AbstractGlassBlock implements EntityBlock {
    protected static final VoxelShape SHAPE = Shapes.or(Block.box(1.0D, 0.0D, 1.0D, 14.0D, 13.0D, 14.0D));

    public Electrolysis(Properties properties){
        super(properties);
    }

    @Override
    public BlockEntity newBlockEntity(BlockPos pos, BlockState state){
        return new ElectrolysisEntity(pos,state);
    }

    @Override
    public RenderShape getRenderShape(BlockState state){
        return RenderShape.ENTITYBLOCK_ANIMATED;
    }    public VoxelShape getShape(BlockState p_50952_, BlockGetter p_50953_, BlockPos p_50954_, CollisionContext p_50955_) {
        return SHAPE;
    }
    @Override
    public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand,
                                 BlockHitResult result) {
        if (!level.isClientSide && level.getBlockEntity(pos) instanceof ElectrolysisEntity) {
            if (!player.isCrouching()) {
                if(player.getItemInHand(hand).getItem() == Items.AIR){
                    //Take item out
                    ((ElectrolysisEntity) level.getBlockEntity(pos)).prependItem(player);
                }else{
                    //Put item in
                    ((ElectrolysisEntity) level.getBlockEntity(pos)).appendItem(player.getItemInHand(hand));
                }
            }
        }

        return InteractionResult.SUCCESS;
    }
}

BlockEntity:


public class ElectrolysisEntity extends BlockEntity {
    int Debug = 0;
    public ElectrolysisEntity(BlockPos p_153215_, BlockState p_153216_) {
        super(Registration.BlockEntity_electrolysis.get(),p_153215_,p_153216_);
    }
    public void prependItem(Player player) {
        Debug += 1;
        requestModelDataUpdate();
        setChanged();
        load(getTileData());
        if (this.level != null) {
            this.level.setBlockAndUpdate(this.worldPosition, getBlockState());
        }
    }
    public void appendItem(ItemStack stack) {
        Debug -= 1;
        requestModelDataUpdate();
        setChanged();
        getTileData();
        if (this.level != null) {
            this.level.setBlockAndUpdate(this.worldPosition, getBlockState());
        }
    }
    @Override
    public void load(CompoundTag compound) {
        System.out.println("------------------------------------------------------------------");
        final CompoundTag inventory = compound.getCompound("Inventory");
        Debug = inventory.getInt("Int");
    }
    @Override
    public void saveAdditional(CompoundTag compound) {
        System.out.println("////////////////////////////////////////////////////////////////");
        final var inventory = new CompoundTag();
        inventory.putInt("Int", Debug);
        compound.put("Inventory", inventory);
    }

    @Override
    public void onDataPacket(Connection net, ClientboundBlockEntityDataPacket pkt) {
        handleUpdateTag(pkt.getTag());
    }

    @Override
    public Packet<ClientGamePacketListener> getUpdatePacket() {
        return ClientboundBlockEntityDataPacket.create(this);
    }

    @Override
    public CompoundTag getUpdateTag() {
        return serializeNBT();
    }

    @Override
    public void handleUpdateTag(CompoundTag tag) {
        super.handleUpdateTag(tag);
        load(tag);
    }
}

BlockEntityRenderer:

public class ElectrolysisRender implements BlockEntityRenderer<ElectrolysisEntity> {
    private final BlockEntityRendererProvider.Context context;
    public ElectrolysisRender(BlockEntityRendererProvider.Context context){
        this.context = context;
    }
    @Override
    public void render(ElectrolysisEntity entity, float partialTicks, PoseStack matrixStack, MultiBufferSource buffer, int combinedOverlay, int packedLight) {
        final BlockRenderDispatcher dispatcher = this.context.getBlockRenderDispatcher();
        final ItemRenderer itemRender = Minecraft.getInstance().getItemRenderer();
        matrixStack.pushPose();
        matrixStack.scale(0.5F,0.5F,0.5F);
        matrixStack.translate(0.7F,1.5F,1F);
        matrixStack.mulPose(Vector3f.XN.rotationDegrees(180F));
        itemRender.renderStatic(Minecraft.getInstance().player,Items.GLASS_BOTTLE.getDefaultInstance(), ItemTransforms.TransformType.FIXED,false,matrixStack,buffer,Minecraft.getInstance().level,combinedOverlay,packedLight,packedLight);
        matrixStack.popPose();

        matrixStack.pushPose();
        matrixStack.scale(0.5F,0.5F,0.5F);
        matrixStack.translate(1.3F,1.5F,1F);
        matrixStack.mulPose(Vector3f.XN.rotationDegrees(180F));
        itemRender.renderStatic(Minecraft.getInstance().player,Items.GLASS_BOTTLE.getDefaultInstance(), ItemTransforms.TransformType.FIXED,false,matrixStack,buffer,Minecraft.getInstance().level,combinedOverlay,packedLight,packedLight);
        matrixStack.popPose();

        matrixStack.pushPose();
        matrixStack.scale(0.8F,0.8F,0.8F);
        matrixStack.translate(0.1F,0,0.1F);
        dispatcher.renderSingleBlock(Blocks.GLASS.defaultBlockState(),matrixStack,buffer,combinedOverlay,packedLight, EmptyModelData.INSTANCE);
        matrixStack.popPose();

        System.out.println(entity.Debug);
            matrixStack.pushPose();
            matrixStack.scale(0.75F,0.6F,0.75F);
            matrixStack.translate(0.15F,0,0.15F);
            dispatcher.renderSingleBlock(Blocks.ICE.defaultBlockState(),matrixStack,buffer,combinedOverlay,packedLight, EmptyModelData.INSTANCE);
            matrixStack.popPose();
    }
}

 

Link to comment
Share on other sites

I remove the junk code you talk about but I still dont understand the load method thing

you mean something like this???

Quote

@Override public void load(CompoundTag compound) { 

final CompoundTag inventory = compound.getCompound("Inventory"); Debug = inventory.getInt("Int");

super.load(compound);

}

Any example?

Edited by Cyanki
Link to comment
Share on other sites

public class ElectrolysisEntity extends BlockEntity {
    int Debug = 0;
    public ElectrolysisEntity(BlockPos p_153215_, BlockState p_153216_) {
        super(Registration.BlockEntity_electrolysis.get(),p_153215_,p_153216_);
    }
    public void prependItem(Player player) {
        Debug += 1;
        setChanged();
    }
    public void appendItem(ItemStack stack) {
        Debug -= 1;
        setChanged();
    }
    @Override
    public void load(CompoundTag compound) {
        final CompoundTag inventory = compound.getCompound("Inventory");
        Debug = inventory.getInt("Int");
        super.load(compound);
    }
    @Override
    public void saveAdditional(CompoundTag compound) {
        final var inventory = new CompoundTag();
        inventory.putInt("Int", Debug);
        compound.put("Inventory", inventory);
    }

    @Override
    public void onDataPacket(Connection net, ClientboundBlockEntityDataPacket pkt) {
        handleUpdateTag(pkt.getTag());
    }

    @Override
    public Packet<ClientGamePacketListener> getUpdatePacket() {
        return ClientboundBlockEntityDataPacket.create(this);
    }
    @Override
    public void handleUpdateTag(CompoundTag tag) {
        super.handleUpdateTag(tag);
        load(tag);
    }
}
1 minute ago, diesieben07 said:

Please post updated code

 

Edited by Cyanki
Link to comment
Share on other sites

[01:20:59] [Render thread/FATAL]: Error executing task on Client
java.lang.NullPointerException: Cannot invoke "net.minecraft.nbt.CompoundTag.getCompound(String)" because "compound" is null
	at org.Tanki.extraspicy.common.Electrolysis.ElectrolysisEntity.load(ElectrolysisEntity.java:49) ~[%2381!:?]
	at net.minecraftforge.common.extensions.IForgeBlockEntity.handleUpdateTag(IForgeBlockEntity.java:88) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2376%2382!:?]
	at org.Tanki.extraspicy.common.Electrolysis.ElectrolysisEntity.handleUpdateTag(ElectrolysisEntity.java:71) ~[%2381!:?]
	at org.Tanki.extraspicy.common.Electrolysis.ElectrolysisEntity.onDataPacket(ElectrolysisEntity.java:62) ~[%2381!:?]
	at net.minecraft.client.multiplayer.ClientPacketListener.lambda$handleBlockEntityData$4(ClientPacketListener.java:999) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at java.util.Optional.ifPresent(Optional.java:178) ~[?:?]
	at net.minecraft.client.multiplayer.ClientPacketListener.handleBlockEntityData(ClientPacketListener.java:998) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.network.protocol.game.ClientboundBlockEntityDataPacket.handle(ClientboundBlockEntityDataPacket.java:46) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.network.protocol.game.ClientboundBlockEntityDataPacket.handle(ClientboundBlockEntityDataPacket.java:13) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:21) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:139) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:22) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:112) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:100) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1009) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:660) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at net.minecraft.client.main.Main.main(Main.java:205) ~[forge-1.18-38.0.17_mapped_official_1.18-recomp.jar%2377!:?]
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
	at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
	at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:38) ~[fmlloader-1.18-38.0.17.jar%230!:?]
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.0.24.jar%2310!:?]
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:90) [bootstraplauncher-0.1.17.jar:?]

Just see this in debug

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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • rp.crazyheal.xyz mods  
    • I'm developing a dimension, but it's kinda resource intensive so some times during player teleporting it lags behind making the player phase down into the void, so im trying to implement some kind of pregeneration to force the game loading a small set of chunks in the are the player will teleport to. Some of the things i've tried like using ServerLevel and ServerChunkCache methods like getChunk() dont actually trigger chunk generation if the chunk isn't already on persistent storage (already generated) or placing tickets, but that doesn't work either. Ideally i should be able to check when the task has ended too. I've peeked around some pregen engines, but they're too complex for my current understanding of the system of which I have just a basic understanding (how ServerLevel ,ServerChunkCache  and ChunkMap work) of. Any tips or other classes I should be looking into to understand how to do this correctly?
    • https://mclo.gs/4UC49Ao
    • Way back in the Forge 1.17 days, work started for adding JPMS (Java Platform Module Support) to ModLauncher and ForgeModLoader. This has been used internally by Forge and some libraries for a while now, but mods (those with mods.toml specifically) have not been able to take advantage of it. As of Forge 1.21.1 and 1.21.3, this is now possible!   What is JPMS and what does it mean for modders? JPMS is the Java Platform Module System, introduced in Java 9. It allows you to define modules, which are collections of packages and resources that can be exported or hidden from other modules. This allows for much more fine-tuned control over visibility, cleaner syntax for service declarations and support for sealed types across packages. For example, you might have a mod with a module called `com.example.mod` that exports `com.example.mod.api` and `com.example.mod.impl` to other mods, but hides `com.example.mod.internal` from them. This would allow you to have a clean API for other mods to use, while keeping your internal implementation details hidden from IDE hints, helping prevent accidental usage of internals that might break without prior notice. This is particularly useful if you'd like to use public records with module-private constructors or partially module-private record components, as you can create a sealed interface that only your record implements, having the interface be exported and the record hidden. It's also nice for declaring and using services, as you'll get compile-time errors from the Java compiler for typos and the like, rather than deferring to runtime errors. In more advanced cases, you can also have public methods that are only accessible to specific other modules -- handy if you want internal interactions between multiple of your own mods.   How do I bypass it? We understand there may be drama in implementing a system that prevents mods from accessing each other's internals when necessary (like when a mod is abandoned or you need to fix a compat issue) -- after all, we are already modding a game that doesn't have explicit support for Java mods yet. We have already thought of this and are offering APIs from day one to selectively bypass module restrictions. Let me be clear: Forge mods are not required to use JPMS. If you don't want to use it, you don't have to. The default behaviour is to have fully open, fully exported automatic modules. In Java, you can use the `Add-Opens` and `Add-Exports` manifest attributes to selectively bypass module restrictions of other mods at launch time, and we've added explicit support for these when loading your Forge mods. At compile-time, you can use existing solutions such as the extra-java-module-info Gradle plugin to deal with non-modular dependencies and add extra opens and exports to other modules. Here's an example on how to make the internal package `com.example.examplemod.internal` open to your mod in your build.gradle: tasks.named('jar', Jar) { manifest { attributes([ 'Add-Opens' : 'com.example.examplemod/com.example.examplemod.internal' 'Specification-Title' : mod_id, 'Specification-Vendor' : mod_authors // (...) ]) } } With the above in your mod's jar manifest, you can now reflectively access the classes inside that internal package. Multiple entries are separated with a space, as per Java's official spec. You can also use Add-Exports to directly call without reflection, however you'd need to use the Gradle plugin mentioned earlier to be able to compile. The syntax for Add-Exports is the same as Add-Opens, and instructions for the compile-time step with the Gradle plugin are detailed later in this post. Remember to prefer the opens and exports keywords inside module-info.java for sources you control. The Add-Opens/Add-Exports attributes are only intended for forcing open other mods.   What else is new with module support? Previously, the runtime module name was always forced to the first mod ID in your `mods.toml` file and all packages were forced fully open and exported. Module names are now distinguished from mod IDs, meaning the module name in your module-info.java can be different from the mod ID in your `mods.toml`. This allows you to have a more descriptive module name that doesn't have to be the same as your mod ID, however we strongly recommend including your mod ID as part of your module name to aid troubleshooting. The `Automatic-Module-Name` manifest attribute is now also honoured, allowing you to specify a module name for your mod without needing to create a `module-info.java` file. This is particularly useful for mods that don't care about JPMS features but want to have a more descriptive module name and easier integration with other mods that do use JPMS.   How do I use it? The first step is to create a `module-info.java` file in your mod's source directory. This file should be in the same package as your main mod class, and should look something like this: open module com.example.examplemod { requires net.minecraftforge.eventbus; requires net.minecraftforge.fmlcore; requires net.minecraftforge.forge; requires net.minecraftforge.javafmlmod; requires net.minecraftforge.mergetool.api; requires org.slf4j; requires logging; } For now, we're leaving the whole module open to reflection, which is a good starting point. When we know we want to close something off, we can remove the open modifier from the module and open or export individual packages instead. Remember that you need to be open to Forge (module name net.minecraftforge.forge), otherwise it can't call your mod's constructor. Next is fixing modules in Gradle. While Forge and Java support modules properly, Gradle does not put automatic modules on the module path by default, meaning that the logging module (from com.mojang:logging) is not found. To fix this, add the Gradle plugin and add a compile-time module definition for that Mojang library: plugins { // (...) id 'org.gradlex.extra-java-module-info' version "1.9" } // (...) extraJavaModuleInfo { failOnMissingModuleInfo = false automaticModule("com.mojang:logging", "logging") } The automatic module override specified in your build.gradle should match the runtime one to avoid errors. You can do the same for any library or mod dependency that is missing either a module-info or explicit Automatic-Module-Name, however be aware that you may need to update your mod once said library adds one. That's all you need to get started with module support in your mods. You can learn more about modules and how to use them at dev.java.
    • Faire la mise à jour grâce à ce lien m'a aider personnellement, merci à @Paint_Ninja. https://www.amd.com/en/support 
  • Topics

×
×
  • Create New...

Important Information

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