GithubHelp home page GithubHelp logo

sculpt-alphas-manager's People

Contributors

ryxx avatar

Stargazers

 avatar Alexander Borukhman avatar JF avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar Terminal Calm avatar  avatar  avatar idchlife avatar  avatar  avatar Aiden Faulconer avatar mangocan avatar  avatar Lucas Sanchez dos Anjos avatar BK7 avatar  avatar  avatar Aaron Fang avatar I.N.K.Y avatar Rakurri avatar  avatar  avatar  avatar Stephanie Platz avatar  avatar Bob avatar  avatar Matheus Vargem avatar Misifiksi avatar sw.cho avatar Carlos Barreto avatar Chingiz Jumagulov aka MeshVoid avatar  avatar  avatar Óscar 'Nebe' Abad avatar ACai avatar Nicolas Lebrun avatar  avatar Bram Eulaers avatar  avatar Narayan avatar  avatar  avatar  avatar Entangled Others avatar  avatar William Godwin avatar  avatar  avatar dirk teucher avatar Kade Markoux avatar Johnathan Mueller avatar David Ballesteros avatar  avatar Jonathan Rose Dunlap avatar Axelaredz avatar Σarko avatar  avatar Ercan Uzunsakal avatar Pierre Schiller avatar Sakari Niittymaa avatar Paul Mulvaney avatar

Watchers

 avatar Arie Leo avatar Pierre Schiller avatar  avatar  avatar  avatar  avatar  avatar BK7 avatar  avatar

sculpt-alphas-manager's Issues

doesnt work with blender 3.5

eror message

Python: Traceback (most recent call last):
File "C:\Users\Gloria\AppData\Roaming\Blender Foundation\Blender\3.5\scripts\addons\Sculpt_Alphas_Manager.py", line 124, in execute
os.startfile(os.path.join(lib_path, selected_category_name))
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'C:\Users\Gloria\3D Objects\cool stuff\uncategoriez\GLORIA ALPHA COLLECTION\Sculpt_Alphas_Manager.py\'

image

Add-on not working on MacOS

Hi,
I tried to use it on Mac (OS 10.14.6) and it was not working.
See my comment for more detail: https://blenderartists.org/t/sculpt-alphas-manager/1200725/17?u=sebastian1066

I investigated the error and I found 2 problems:

  1. The line os.startfile(os.path.join(lib_path, selected_category_name)) seems to work only for Windows. For *Nix you'd need to use something like this:
            opener = "open" if sys.platform == "darwin" else "xdg-open"
            subprocess.call([opener, os.path.join(lib_path, selected_category_name)])

I replaced line 124 for the code below and I got rid of this problem

        if sys.platform == "win32":
            os.startfile(os.path.join(lib_path, selected_category_name))
        else:
            opener = "open" if sys.platform == "darwin" else "xdg-open"
            subprocess.call([opener, os.path.join(lib_path, selected_category_name)])
  1. After fixing the first problem, the categories and brushes didn't show. This was caused by line 70:
    if os.path.isdir(lib_path + folder):
    I replaced it for the code below and then I was able to see the categories and brushes:
    if os.path.isdir(os.path.join(lib_path, folder)):
    I'm not able to test the above code in a Win environment but if you'd like to make it work for the different OS's it would seem you'll have to do something like I did.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.