![]() |
|
[MacOS] How to get ready Wings3D Scripting Plug-ins - Printable Version +- Wings 3D Development Forum (https://www.wings3d.com/forum) +-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1) +--- Forum: Interface & Usage (https://www.wings3d.com/forum/forumdisplay.php?fid=3) +---- Forum: How To (https://www.wings3d.com/forum/forumdisplay.php?fid=19) +---- Thread: [MacOS] How to get ready Wings3D Scripting Plug-ins (/showthread.php?tid=3099) |
[MacOS] How to get ready Wings3D Scripting Plug-ins - tkbd - 04-13-2023 I tried to edb's wings3D script plugin enviroment get ready on MacOS. It successfuly,so I wanted share infomation. (It took me few hours to figure out all the information nessesary.) Scripting with Scheme and Python by edb http://www.wings3d.com/forum/showthread.php?tid=3096&pid=16842#pid16842 How to the setting
I decided to used two Interpreters on MacOS Python Interpreter : Python3 Scheme Interpreter : Gauche(gosh) In MacOS,It is easy install them by using HomeBrew pakage manager. Also nessesary install Command Line Tools for Xcode. If you not install Command Line Tools of Xcode yet Run terminal.app,and type a following for install them. Code: sudo xcode-select --installRun Wings3D and open menu ... Edit > Plug in-preferences > Script Preference Switch to "Interpreters" Tab, and Fill settings for "Python Interpreter Path" and "Scheme Interpreter Path"
Current Issue: In currently it not support symbolic link. So I should set full path. Code: e.g. FYI for trouble shooting: If interpreter file path contains wrong space or wrong name,or wings chash.
Code: DEBUG: Traceback (most recent call last):FYI for miscellaneous:
::: Shapes tab :: For primitive mode)
::: Commands tab :: For Body mode)simple_shape_effects
::: Importer/Exporter tab :::
Summary of Wings3D Script Plugin setting on MacOS ![]() Godot ![]() Bitmap ![]() Pixel(pgm)to 3d mesh ![]() WaveyTranslate
RE: [MacOS] How to get ready Wings3D Scripting Plug-ins - edb - 04-15-2023 Hi tkbd, Thank you for documenting and creating very nice charts for setting up scripting on mac os. |