Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not working as expected in blender 3.4 #28

Closed
manjunath7472 opened this issue Jan 11, 2023 · 3 comments
Closed

Not working as expected in blender 3.4 #28

manjunath7472 opened this issue Jan 11, 2023 · 3 comments

Comments

@manjunath7472
Copy link

manjunath7472 commented Jan 11, 2023

Second set of selected Keyframes not offsetting as expected if there are first set of keyframes.

@mrachinskiy
Copy link
Owner

Hi, could you please provide example blend file, or screenshot of the issue?

@MADREVV
Copy link

MADREVV commented Jan 15, 2023

image
(Blender 3.3.2)

SPDX-License-Identifier: GPL-3.0-or-later

Copyright 2021-2022 Mikhail Rachinskiy

v1.1.1

from future import annotations
from pathlib import Path
from typing import Any

import bpy

def reload_recursive(path: Path, mods: dict[str, Any]) -> None:
import importlib

for child in path.iterdir():

    if child.is_file() and child.suffix == ".py" and not child.name.startswith("__") and child.stem in mods:
        importlib.reload(mods[child.stem])

    elif child.is_dir() and not child.name.startswith((".", "__")):

        if child.name in mods:
            reload_recursive(child, mods[child.name].__dict__)
            importlib.reload(mods[child.name])
            continue

        reload_recursive(child, mods)

def check(*args: Any) -> None:
for arg in args:

    if isinstance(arg, Path) and not arg.exists():
        msg = "READ INSTALLATION GUIDE"
        error = FileNotFoundError(f"\n\n!!! {msg} !!! {msg} !!! {msg} !!!\n")
        raise error

    if isinstance(arg, tuple) and arg > bpy.app.version:
        ver = "{}.{}".format(*arg)
        error = RuntimeError(f"\n\n!!! BLENDER {ver} IS REQUIRED !!!\n")
        raise error

@mrachinskiy
Copy link
Owner

@MADREVV your issue is irrelevant to the initial report, next time open a new issue.

If error occurs on add-on activation, it means you are trying to install add-on repository instead of release. Make sure you download add-on release using link provided in step one of installation guide.

No response from issue author, closing report as invalid.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants