GithubHelp home page GithubHelp logo

Comments (4)

Draise14 avatar Draise14 commented on June 11, 2024

All in all, this has become my day to day addon - can't wait for the update!

from modifier_list.

Draise14 avatar Draise14 commented on June 11, 2024

image
I think I found the issue, it's with my build version number.

from modifier_list.

Draise14 avatar Draise14 commented on June 11, 2024

Testing in Blender instead of my own build...

Yes, blender 2.92 works fine, it's my version.

from modifier_list.

Symstract avatar Symstract commented on June 11, 2024

Good that you found the issue. Bforartist seems not to follow the official Blender version number which means that Modifier List won't work well on that. That's because the code uses the version number in different modifiers (currently three modifiers) to decide what to show in which version. That way I don't need to have a different version for every Blender release. But in Bforartists the modifier layouts are stuck showing Blender 2.90 layouts, so there should be things missing (even after I release an update for regular Blender). I don't personally use Bforartist or follow its development so I won't make a separate version for that. :(

Example:

    def MULTIRES(self, layout, ob, md):
        # ...
        
        # 2.91 ADDITION
        if BLENDER_VERSION_MAJOR_POINT_MINOR >= 2.91:  # Obviously 2.5 is less than 2.91...
            row = col.row()
            row.enabled = ob.mode == 'SCULPT'
            row.prop(md, "use_sculpt_base_mesh")

       # ...

Until Blender 2.90 I didn't need to do this because I could access the built-in layouts from Python. Unfortunately that's not possible anymore.

from modifier_list.

Related Issues (20)

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.