feat(Blender):

* updated version to match Bevy side
 * added back manifest to do a clean 4.2 extension
 * removed tmp scene ids
This commit is contained in:
kaosat.dev 2024-08-09 11:03:31 +02:00
parent c4d8e02a9d
commit 362d6b214b
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
bl_info = {
"name": "blenvy",
"author": "kaosigh",
"version": (0, 1, 0),
"version": (0, 1, 0, "alpha.1"),
"blender": (3, 4, 0),
"location": "File > Import-Export",
"description": "tooling for the Bevy engine",

View File

@ -13,12 +13,12 @@ import uuid
def serialize_current(settings):
# sigh... you need to save & reset the frame otherwise it saves the values AT THE CURRENT FRAME WHICH CAN DIFFER ACROSS SCENES
current_frames = [scene.frame_current for scene in bpy.data.scenes]
for scene in bpy.data.scenes:
"""for scene in bpy.data.scenes:
scene.frame_set(0)
if scene.id_test == '':
print("GENERATE ID")
scene.id_test = str(uuid.uuid4())
print("SCENE ID", scene.id_test)
print("SCENE ID", scene.id_test)"""
#https://blender.stackexchange.com/questions/216411/whats-the-replacement-for-id-or-hash-on-bpy-objects
current_scene = bpy.context.window.scene

View File

@ -1,7 +1,7 @@
schema_version = "1.0.0"
id = "Blenvy"
version = "0.1.0"
version = "0.1.0-alpha.1"
name = "Blenvy"
tagline = "Tools to add/edit components of objects, collections etc & create blueprints & levels for the Bevy Engine in Blender"
maintainer = "kaosat-dev <https://github.com/kaosat-dev/>"