Jump to content

[1.15.1] How to import OBJ files as block models


MaxHyper

Recommended Posts

I know 1.15 is still quite new, but has anybody figured out how to use .obj files as models? Since 1.15 changed the whole rendering system solutions for 1.14 do not work.
The main issue is that OBJLoader.INSTANCE.addDomain() no longer exists.
Thanks in advance.

  • Like 1
Link to comment
Share on other sites

You don't need to do that call anymore, it just works™️ if you reference the model from your blockstate json

  • Like 1

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

On 1/9/2020 at 11:00 PM, Cadiboo said:

You don't need to do that call anymore, it just works™️ if you reference the model from your blockstate json

Okay ive been trying for a while and havent been able to figure it out. When i reference the obj file from the blockstate i get an error where its adding ".json" to the end on its own. 

[00:19:43] [Server-Worker-6/WARN] [minecraft/ModelBakery]: Unable to load model: 'brassnsteam:block/obj/pipe_core_valve.obj' referenced from: brassnsteam:iron_pipe#center=true,down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true: java.io.FileNotFoundException: brassnsteam:models/block/obj/pipe_core_valve.obj.json

Is there nothing i need to do in the code? Messing with the blockstate only seems to not be enough. 

Edited by MaxHyper
  • Like 1
Link to comment
Share on other sites

4 hours ago, MaxHyper said:

Okay ive been trying for a while and havent been able to figure it out. When i reference the obj file from the blockstate i get an error where its adding ".json" to the end on its own. 


[00:19:43] [Server-Worker-6/WARN] [minecraft/ModelBakery]: Unable to load model: 'brassnsteam:block/obj/pipe_core_valve.obj' referenced from: brassnsteam:iron_pipe#center=true,down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true: java.io.FileNotFoundException: brassnsteam:models/block/obj/pipe_core_valve.obj.json

Is there nothing i need to do in the code? Messing with the blockstate only seems to not be enough. 

Edited 4 hours ago by MaxHyper

I would like to help you, but unfortunately I do not know the answer to your problem.

New in Modding? == Still learning!

Link to comment
Share on other sites

Post your logs + BlockState json & model

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

6 hours ago, Cadiboo said:

Post your logs + BlockState json & model

The only log I have that is meaningful is the line on my previous comment. 

 

Here's the blockstate, the obj part is only the second bit.

{
  "multipart": [
    {   "when": { "center": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core" }
    },
    {
      "apply": { "model": "brassnsteam:block/pipes/attachments/pipe_core_valve.obj" }
    },

    {   "when": { "north": true, "south": true, "east": false, "west": false,"up": false, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_straight" }
    },
    {   "when": { "north": false, "south": false, "east": true, "west": true,"up": false, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_straight" , "y": 90 }
    },
    {   "when": { "north": false, "south": false, "east": false, "west": false,"up": true, "down": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_straight" , "x": 270 }
    },
    {   "when": { "north": true, "south": false, "east": true, "west": false, "up": false, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" },
      "_comment" : "NE"
    },
    {   "when": { "north": true, "south": false, "east": false, "west": true, "up": false, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "y": 270 },
      "_comment" : "NW"
    },
    {   "when": { "north": true, "south": false, "east": false, "west": false, "up": true, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 270, "y": 270 },
      "_comment" : "NU"
    },
    {   "when": { "north": true, "south": false, "east": false, "west": false, "up": false, "down": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 90, "y": 270 },
      "_comment" : "ND"
    },
    {   "when": { "north": false, "south": true, "east": true, "west": false,"up": false, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "y": 90 },
      "_comment" : "SE"
    },
    {   "when": { "north": false, "south": true, "east": false, "west": true, "up": false, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "y": 180 },
      "_comment" : "SW"
    },
    {   "when": { "north": false, "south": true, "east": false, "west": false,"up": true, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 270, "y": 90 },
      "_comment" : "SU"
    },
    {   "when": { "north": false, "south": true, "east": false, "west": false,"up": false, "down": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 90, "y": 90 },
      "_comment" : "SD"
    },
    {   "when": { "north": false, "south": false, "east": true, "west": false,"up": true, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 270 },
      "_comment" : "EU"
    },
    {   "when": { "north": false, "south": false, "east": true, "west": false,"up": false, "down": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 90 },
      "_comment" : "ED"
    },
    {   "when": { "north": false, "south": false, "east": false, "west": true,"up": true, "down": false },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 270, "y": 180 },
      "_comment" : "WU"
    },
    {   "when": { "north": false, "south": false, "east": false, "west": true,"up": false, "down": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_core_corner" , "x": 90, "y": 180 },
      "_comment" : "WD"
    },


    {   "when": { "north": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_side" }
    },
    {   "when": { "east": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_side", "y": 90 }
    },
    {   "when": { "south": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_side", "y": 180 }
    },
    {   "when": { "west": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_side", "y": 270 }
    },
    {   "when": { "up": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_side", "x": 270 }
    },
    {   "when": { "down": true },
      "apply": { "model": "brassnsteam:block/pipes/iron/pipe_side", "x": 90 }
    }
  ]
}

Not sure what you mean by posting the model since its an obj, but heres its location: (rightmost file)

image.png.593678c6aeb0369b7fec2183f23533b7.png

 

Edited by MaxHyper
Link to comment
Share on other sites

I think that all you need to do is remove the ".obj" from

"apply": { "model": "brassnsteam:block/pipes/attachments/pipe_core_valve.obj" }

and it should work.

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

17 hours ago, Cadiboo said:

I think that all you need to do is remove the ".obj" from


"apply": { "model": "brassnsteam:block/pipes/attachments/pipe_core_valve.obj" }

and it should work.

Nope, its still looking for a .json
Id like to point out that the other file named pipe_core_valve.json in the picture i sent was just a test and is unrelated.

Link to comment
Share on other sites

  • 4 weeks later...

Using .obj files seems to have changed a lot, I am assuming that 1.15 has removed the ForgeLoader for blockstates, as the multipart system really covers everything it did (except for loading .obj).

 

The new way to load models:

Your blockstate should use the vanilla method (without".obj" on the model name) e.g.:

{
  "variants": {
    "": {
      "model": "MODID:block/MODEL"
    }
  }
}

 

Every model, in the "models/block" path, now needs, MODEL.json, MODEL.obj, MODEL.mtl.

In your new MODEL.json file you need to tell it to use the OBJLoader from forge, and give the full resource path to your ".obj" file, eg:

{
  "loader": "forge:obj",
  "model": "MODID:models/block/MODEL.obj",
  "flip-v": true
}

 

 

The options you can include in the new MODEL.json file are:

{
	"loader": "forge:obj",  //to inform the resource loader to use OBJLoader
	"model": <<resource path to .obj file>>,
	"detectCullableFaces": true|false,
	"diffuseLighting": true|false,
	"flip-v": true|false,
	"ambientToFullbright": true|false,
	"materialLibraryOverride": <<resource path to material library if you need different materials on the same .obj>>,
}

 

Remember to update the paths for your textures in the .mlt file to use resource paths (without ".png").

 

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...

That's work for me, just imported on the json files, just the uv's are messed up, i'm registered the block normally without any function to import models or textures
on Forge 1.15.2 and mapping 20200408-1.15.1


model.json

{
  "parent": "forge:item/default",
  "loader": "forge:composite",
  "parts": {
    "part1": {
      "loader": "forge:obj",
      "model": "MOD_ID:models/block/mesh/model.obj"
      "textures": {
        "#YourMaterialName": "MOD_ID:blocks/modeltexture"
      }
    }
  }
}

 

blockstate.json

{
  "variants": {
    "": {"model":  "MOD_ID:block/model"}
  }
}

 

item.json
 

{
  "parent": "MOD_ID:block/model"
}

 

model.mtl

# Blender MTL File: 'mdoel.blend'
# Material Count: 1

newmtl YourMaterialName
Ns 225.000000
Ka 1.000000 1.000000 1.000000
Kd 0.800000 0.800000 0.800000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.450000
d 1.000000
illum 2
map_Kd MOD_ID:blocks/texture
map_d MOD_ID:blocks/texture


 

Edited by Uollf
Link to comment
Share on other sites

  • 2 years later...

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • SLOT MAHJONG WAYS 3 SCATTER HITAM : POLA SLOT MAHJONG 3 SCATTER HITAM HARI INI - TRIK POLA SLOT GACOR x500 SCATTER HITAM KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
    • JANGKRIK4D >> SLOT DANA GOPAY OVO | SLOT GACOR GAMPANG MAXWIN X100 X250 X500  << DAFTAR JANGKRIK4D >> JANGKRIK4D SITUS SLOT PGSOFT GAMING TERPERCAYA JANGKRIK4D 🚀 SITUS PGSLOT DAN PGSOFT GAMING TERPERCAYA 🚀 – JANGKRIK4D situs pgslot paling gacor telah hadir bersama JANGKRIK4D yang karena telah memberikan berbagai macam permainan untuk mendapatkan jackpot yang besar karena sudah menjadi pioneer untuk penyedia game paling mujarab beserta jajaran pgsoft gaming terpercaya yang telah bersama dengan JANGKRIK4D menjalin kerja sama resmi serta berlisensi untuk memberikan kemenangan paling besar untuk para player yang mencoba menamatkan permainan yang telah memeberikan kemenangan fantastis saat ini. jangkrik4d slot gacor slot deposit dana demo slot gacor demo slot pg demo pg soft slot deposit gopay slot deposit pulsa slot server jepang
    • LINK DAFTAR KLIK DISINI slot deposit dana 5000 ribu via spaylater  adalah permainan slot dana gacor dengan menyediakan slot server thailand deposit dana. dan slot deposit dana adalah slot terbesar di thailand. anda cukup daftar disini dan mainkan disini slot deposit 5000 ribu via dana sudah dipastikan dengan deposit dana akan membuat akun anda menjadi akun special. situs deposit dana adalah situs yang terpercaya dan terakurat. Slot dana merupakan situs slot deposit dana yang sangat trending dan sangat dikenal luas di masyarakat. dengan adanya MAXWINBET77 anda bisa mendapatkan keuntungan besar setiap hari tanpa adanya potongan  yang pastinya menguntungkan bagi anda. situs slot dana  maxwinbet77 adalah situs slot dana terbaik 2024 dan dijamin mudah maxwin.
    • MELATI88 adalah pilihan terbaik bagi Anda yang ingin bermain slot dengan deposit pulsa tanpa potongan besar sebesar 5000. Dengan berbagai keunggulan yang kami tawarkan, kami siap memberikan Anda pengalaman bermain yang tak terlupakan. Bergabunglah dengan kami sekarang dan mulailah petualangan bermain slot yang seru dan menguntungkan!    
    • SENSASLOT adalah pilihan tepat bagi Anda yang menginginkan pengalaman bermain slot tanpa potongan besar saat deposit menggunakan Dana. Berikut adalah beberapa alasan mengapa Anda harus memilih SENSASLOT: Deposit Dana Tanpa Potongan Kami bangga menjadi salah satu situs slot pertama yang menawarkan deposit menggunakan Dana tanpa potongan besar sebesar 1000 ribu. Ini berarti Anda dapat melakukan deposit sebesar 1000 ribu dan mendapatkan seluruhnya untuk digunakan dalam permainan slot kami. Beragam Pilihan Permainan SENSASLOT menyajikan koleksi permainan slot yang beragam dan menarik dari berbagai provider terkemuka. Mulai dari tema klasik hingga yang paling modern, Anda akan menemukan banyak pilihan permainan yang sesuai dengan selera dan preferensi Anda. Kemudahan Bertransaksi Selain deposit Dana tanpa potongan besar, kami juga menyediakan berbagai metode pembayaran lainnya untuk kenyamanan Anda. Proses deposit dan penarikan dana di SENSASLOT cepat, mudah, dan aman.    
  • Topics

×
×
  • Create New...

Important Information

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