Skip to content

Commit

Permalink
Renames to match latest spec changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eoineoineoin committed Nov 28, 2023
1 parent 5a3fb48 commit 54e721d
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from .blender.imp.gltf2_blender_rigid_bodies import glTF2ImportUserExtension

bl_info = {
"name": "KHR_rigid_bodies",
"name": "KHR_physics_rigid_bodies",
"category": "Import-Export",
"version": (0, 1, 0),
"version": (0, 2, 0),
"blender": (3, 6, 0),
"location": "File > Export > glTF 2.0",
"description": "Extension for adding rigid body information to exported glTF file",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class KHR_rigid_body_constraint_node_properties(bpy.types.PropertyGroup):

class KHR_rigid_body_exporter_properties(bpy.types.PropertyGroup):
enabled: bpy.props.BoolProperty(
name="KHR_rigid_bodies",
name="KHR_physics_rigid_bodies",
description="Include rigid body data in the exported glTF file.",
default=True,
)
Expand All @@ -159,7 +159,7 @@ class KHR_rigid_body_exporter_properties(bpy.types.PropertyGroup):

class KHR_rigid_body_importer_properties(bpy.types.PropertyGroup):
enabled: bpy.props.BoolProperty(
name="KHR_rigid_bodies",
name="KHR_physics_rigid_bodies",
description="Include rigid body data from the imported glTF file.",
default=True,
)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from mathutils import Vector, Quaternion
from typing import Optional, Union, Dict, Any

rigidBody_Extension_Name = "KHR_rigid_bodies"
rigidBody_Extension_Name = "KHR_physics_rigid_bodies"

# Enum values for friction/restitution combine modes
physics_material_combine_types = [
Expand Down

0 comments on commit 54e721d

Please sign in to comment.