SketchUp and Unity3D

127 Views Asked by At

I use SkethUp for 3d-modelling. I have some problems with exporting the models with images in Unity, the images aren't exported if I use file.skp and are exported, but not displayed if I use file.dae. Does someone know the right way to do it?

2

There are 2 best solutions below

0
amitklein On

You can use the Unity importer

https://docs.unity3d.com/Manual/class-SketchUpImporter.html#:~:text=To%20import%20a%20SketchUp%20file,view%20inside%20the%20Unity%20Editor.&text=Generate%20back%2Dfacing%20polygons%20in%20Unity.

Other way to do this is to export the .obj and the textures files separately, create a new material inside Unity using the textures and attaching it to the object in the scene (you can create a prefab after to have it for later use)

1
Anonymous On

Unpacking the prefab and putting the material with my texture to the materials of that white image is a solution.