Skip to content

Commit

Permalink
Merge pull request #1461 from pixiv/extended-collider-promote
Browse files Browse the repository at this point in the history
chore: promote extended collider specVersion from `1.0-draft` to `1.0`
  • Loading branch information
0b5vr committed Aug 7, 2024
2 parents 8248821 + 3fe2672 commit 9068b96
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
},
"extensions": {
"VRMC_springBone_extended_collider": {
"specVersion": "1.0-draft",
"specVersion": "1.0",
"shape": {
"sphere": {
"radius": 1.25,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
},
"extensions": {
"VRMC_springBone_extended_collider": {
"specVersion": "1.0-draft",
"specVersion": "1.0",
"shape": {
"plane": {
"normal": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const POSSIBLE_SPEC_VERSIONS = new Set(['1.0', '1.0-beta']);
/**
* Possible spec versions of `VRMC_springBone_extended_collider` it recognizes.
*/
const POSSIBLE_SPEC_VERSIONS_EXTENDED_COLLIDERS = new Set(['1.0-draft']);
const POSSIBLE_SPEC_VERSIONS_EXTENDED_COLLIDERS = new Set(['1.0']);

export class VRMSpringBoneLoaderPlugin implements GLTFLoaderPlugin {
public static readonly EXTENSION_NAME = 'VRMC_springBone';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface VRMCSpringBoneExtendedCollider {
/**
* Specification version of VRMC_springBone_extended_collider.
*/
specVersion: '1.0-draft';
specVersion: '1.0';

/**
* The shape of the collider.
Expand Down

0 comments on commit 9068b96

Please sign in to comment.