-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from OmooLab/feature/dev
Feature/dev
- Loading branch information
Showing
40 changed files
with
3,029 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"tabWidth": 2, | ||
"overrides": [ | ||
{ | ||
"files": "*.md", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,33 @@ | ||
from .nodes import custom_nodes | ||
from . import auto_load | ||
from . import menu | ||
|
||
import bpy | ||
|
||
from . import auto_load | ||
from . import menus | ||
|
||
|
||
bl_info = { | ||
"name": "Bioxel Nodes", | ||
"author": "Ma Nan", | ||
"description": "", | ||
"blender": (4, 1, 0), | ||
"version": (0, 1, 0), | ||
"blender": (4, 0, 0), | ||
"version": (0, 1, 1), | ||
"location": "File -> Import", | ||
"warning": "", | ||
"category": "Node" | ||
} | ||
|
||
auto_load.init() | ||
|
||
bpy.types.Scene.bioxels_dir = bpy.props.StringProperty( | ||
name="Bioxels Directory", | ||
subtype='DIR_PATH', | ||
default="//" | ||
) | ||
|
||
|
||
def register(): | ||
auto_load.register() | ||
custom_nodes.register() | ||
menu.create_menu() | ||
menus.add() | ||
bpy.types.Scene.bioxels_dir = bpy.props.StringProperty( | ||
name="Bioxels Directory", | ||
subtype='DIR_PATH', | ||
default="//" | ||
) | ||
|
||
|
||
def unregister(): | ||
try: | ||
menu.remove_menu() | ||
custom_nodes.unregister() | ||
auto_load.unregister() | ||
except RuntimeError: | ||
pass | ||
menus.remove() | ||
auto_load.unregister() |
Git LFS file not shown
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .menu import CustomNodes | ||
from .menus import CustomNodes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from .preferences import ExternalPackagePreferences | ||
from .preferences import ExternalPackagePreferences | ||
from .package import PackageInstaller |
Oops, something went wrong.