Wings 3D Development Forum
Export to a temp .obj and import from temp .obj - Printable Version

+- Wings 3D Development Forum (https://www.wings3d.com/forum)
+-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1)
+--- Forum: Programming (https://www.wings3d.com/forum/forumdisplay.php?fid=7)
+--- Thread: Export to a temp .obj and import from temp .obj (/showthread.php?tid=2978)

Pages: 1 2


Export to a temp .obj and import from temp .obj - morikan - 01-17-2021

Hi

I do not know anything about Erlang. I am wondering how hard it would be to implement a simple plugin that would let me implement exporting to a temp.obj and importing from temp.obj

I want this so that I can exchange files between other apps and Wings quickly.

thanks


RE: Export to a temp .obj and import from temp .obj - micheus - 01-17-2021

Welcome morikan

Are you talking about this plugin written to others app?

https://github.com/heimlich1024/OD_CopyPasteExternal


RE: Export to a temp .obj and import from temp .obj - morikan - 01-17-2021

I guess something similar like that. Just a simple exporting a temp.obj somewhere and importing from the same location when needed. I love to use Wings3D as my goto modeler for some stuff.


RE: Export to a temp .obj and import from temp .obj - micheus - 01-18-2021

I've been following that project, but since no one has asked for something like that I didn't thought about try a plugin for it.

Just when I was picking the link show it to you I noticed someone asked for a version for Wings3D a week ago. I thought it would be you. Smile

Anyway, if you are working in a specific version there is no problem.
I'm going to think about that one because it has already a lot of other software supported.


RE: Export to a temp .obj and import from temp .obj - micheus - 01-18-2021

Humm. Sorry, I read too fast your post. I thought you were about to write a code for that.

I'm looking for a code to that plugin.

To speed up your process, by now, you could to assign a hotkey to export obj option.


RE: Export to a temp .obj and import from temp .obj - morikan - 01-18-2021

Hi,

I am just interested in a way to export and import temp.obj to system's temp folder. I do not know anything about Erlang, but if it is easy enough I am willing to put sometime in it.

In theory it would be nice to be able to have something like Zbrush GOZ plugins. That one can replace and update the existing mesh data in those applications. So it is more transparent.


RE: Export to a temp .obj and import from temp .obj - micheus - 01-19-2021

morikan Wrote:In theory it would be nice to be able to have something like Zbrush GOZ plugins. That one can replace and update the existing mesh data in those applications. So it is more transparent.
Do you know there are others apps using this approach?

I'm asking because otherwise it doesn't worth to spend time on it.
The one I pointed at least has a lot of app able to use it.


RE: Export to a temp .obj and import from temp .obj - morikan - 01-20-2021

GoZ has been implemented in Blender, Maya, Modo etc.

https://github.com/JoseConseco/GoB

I was looking for a quick way to export and import stuff ina temporary way, mostly to use it with Modo, Blender or Houdini since they all support Python.

If you are really wanting to implement it such that it can be used in multiple apps, I guess the addon you mentioned is the best option given it seems to support many more.

I personally would to love to have a solid integration with other apps, since I believe that Wings3D is still is a strong modeling app and im some areas it is better than Blender when it comes to modeling, although Blender has really good modeling tools. That kind of integration seems to be alot of work. For instance a live connection between Blender and Wings would be prett neat.


RE: Export to a temp .obj and import from temp .obj - micheus - 01-22-2021

Quote:If you are really wanting to implement it such that it can be used in multiple apps, I guess the addon you mentioned is the best option given it seems to support many more.
I started to implement the plugin, but I'm still having problem with the UV data. Only the mesh is read and built.


RE: Export to a temp .obj and import from temp .obj - morikan - 01-22-2021

That sounds great. Thanks for going ahead with it. Let me know if you need testing.