3tene
Katalyis Sep 15, 2020 @ 12:53pm
So has anyone figured out how to import objects?
So you have the option to import in objects. I've attempted this but found that they are imported without texture. The file types I've attempted are OBJ and FBX so far. I can't seem to find any documentation regarding it so I thought I'd ask here and see if anyone's had luck.
< >
Showing 1-9 of 9 comments
BOT Cookie Oct 10, 2020 @ 10:49pm 
Hello pal, how did you import your FBX file to 3tene. Is it on the left menu bar under "Other than avatar. Place 3d object?"
Katalyis Oct 19, 2020 @ 7:23pm 
Originally posted by 다국어 쿠키 Multilingual Co:
Hello pal, how did you import your FBX file to 3tene. Is it on the left menu bar under "Other than avatar. Place 3d object?"

Yes, that's how I imported it. It imports the model itself in fine but fails to import any of the textures which...kind of defeats the purpose of having the object in there to begin with.
Maverynthia Oct 21, 2020 @ 7:14pm 
Originally posted by 다국어 쿠키 Multilingual Co:
Hello pal, how did you import your FBX file to 3tene. Is it on the left menu bar under "Other than avatar. Place 3d object?"
You place it into the folder that pops up when you press "Open FOlder"
Katalyis Oct 23, 2020 @ 11:51pm 
Originally posted by Maverynthia:
You place it into the folder that pops up when you press "Open FOlder"

I've done that. I placed it in the folder that pops up and the object -does- show up. The problem is that its textures fail to show up. I've placed the textures in the folder, I've attempted both OBJ and FBX format but the result is the same: The object imports into the scene as a solid grey object with no textures attached to it.
Pixie Oct 25, 2020 @ 3:04pm 
The same thing happened to me in Pro. I autotranslated the Japanese documentation and it said "It supports reading of OBJ files and FBX files. * If the OBJ file refers to an MTL file or texture image, include all the files." I tried including the zip file of the texures, unzipping them into a folder, and also just placing the texture files directly in the object folder. It's still gray.
Last edited by Pixie; Oct 25, 2020 @ 3:04pm
LadyThaleia Oct 30, 2020 @ 2:23am 
Hey! I had a FBX File that a had from Booth. It had about 6 PNG Files, when I forgot those, the Object was just plain grey. Maybe you forgot to transfer the png? I put them all in the same folder (that one, that opens at "Open Folder")
Last edited by LadyThaleia; Oct 30, 2020 @ 2:24am
Pixie Oct 30, 2020 @ 3:42pm 
No, I put all the ones I had in there... oh well. I'll look around Booth for files. Maybe they have to be set up in a certain way.
SushiKishi Dec 13, 2020 @ 10:21pm 
Edit: I don't know when Imgur started to, uh, suck? But apparently you can't click on an image to blow it up full-screen? That makes them really hard to read unless you add .png to the end of the links. I added .png to the links here -- and imgur strips it on redirect! NICE! Sorry, I don't know a good Imgur alternative.


-----


This isn't necessarily the "right" way to fix it but you may be able to 'fix' some FBX and OBJ files by putting them into Notepad++.

The issue is two-fold. First, 3tene doesn't let you pick or modify the texture for your objects -- that's not really what it's meant to do. I don't do 3D Modelling, but I imagine in most use sets where you load in an FBX/OBJ, you can pick a texture to go with. Secondly, when the modeller exports their FBX/OBJ, whether through user error or just the way the programs are designed, the objects are exporting pointing to a specific local file address rather than...local?

I mean that the object is looking for the texture in C:\users\desktop\texture.png, instead of just loading "texture.png" from the same directory. If this is the case, you can fix it!

It's far easier to read an OBJ file than an FBX file, but ill try to show an example of both.

FBX File -- This rose free from booth: https://booth.pm/en/items/1854240
OBJ File -- This corsage from Free3D: https://free3d.com/3d-model/silkcorsage--12528.html

If you load the Rose.FBX in 3tene, it won't have any textures. If you open Rose.FBX in Notepad++, and go down to line 539 or so, you'll see this: https://imgur.com/7GqAsw3.png

There's two problems here! First, the FBX is looking for its texture in C:\users\kuklochai\desktop. Unless your username is Kuklochai, this folder probably doesn't exist. Secondly, even if it did, the textures provided by the modeller are red.png blue.png yellow.png -- not 'flowergradient2.png'!

So what you'll need to do is...copy the color of your choice to the folder the FBX specifies, rename the file (in this case: C:\users\kuklochai\desktop\flowergradient2.png), and repeat this process for all textures called in the FBX (see line 540!).

"Why not just change the file paths in the file?" I tried that, and 3tene would no longer read the file. I'm not sure why -- I get a generic error message. Maybe there's a built-in checksum or something? So I'm doing it that roundabout way.

For the OBJ file I posted, there's actually two separate issues, but it's a good opportunity to show another way you could possible fix a broken texture!

You'll see that the OBJ file is a bit easier to see the filenames for: https://imgur.com/clmLf04.png

That's the OBJ file -- you'll want to check the MTL file too. They may not all be listed right at the top of the file always, but it'll be easy enough to do a find for it once you know what you're looking for. If it's looking for a MTL file or the map_Kd line is looking for a texture file that's off in lala land instead of just the local directory, you can tweak it here. You *can* change the text to point directly to the file here for this one!

The second issue with this particular example is in the MTL file. For some reason, the Kd line (line 3) of the MTL file was set to all 0's. The map_Kd line tells the file where to find it's texture, but then it takes the image file and multiplies the size by the values in the Kd line. Naturally, anything times 0 is 0 -- it was loading the texture, setting it to 0x0x0 in size, and applying it. Cool!

I set it to all 1s and it looks like it should. If you have any sort of errors with an Obj (say, glasses not being 'transparent,' you might fiddle with the illum line in the MTL. Please note that modifying files in this way may not be allowed by the license from the modeller, so please take note of that! You can find out more about the MTL file here: http://paulbourke.net/dataformats/mtl/ including what each illum means.

Will this fix everything? No! Especially for FBX files, I can't always find where it's supposedly loading a texture anyway, so if the model was built to be loaded in and have the texture applied inside the modelling program (i.e., no textures attached), you're SOL since 3tene doesn't do that. You'd have to load the model in another editor and apply the texture yourself.
Last edited by SushiKishi; Dec 13, 2020 @ 10:28pm
Feeble Attempt Jan 23, 2021 @ 9:21pm 
Not sure, I found semi-helpful the original Japanese article on importing. It brought in the obj without texture but fbx had (it came in really big but article showed me how to re-scale it https://3tene.github.io/WebDocument/#ObjectPlacement.md
< >
Showing 1-9 of 9 comments
Per page: 1530 50