ousttrue
4d78f864e8
impl VRMSampleCopy.Validate
2023-07-05 14:08:30 +09:00
ousttrue
5a87e0a4bf
SampleCopy 済みか確認する
2023-07-05 13:44:32 +09:00
ousttrue
e8861704d2
UniVRM-0.112.0
2023-06-09 17:13:42 +09:00
ousttrue
48ebe7e081
Merge pull request #2064 from ousttrue/fix/broken_springbone_no_throw
...
springbone の import で throw しない
2023-06-06 13:04:08 +09:00
ousttrue
3f3f97d4e9
Merge pull request #2075 from ousttrue/version/v0_111_0
...
UniVRM-0.111.0
2023-06-05 20:04:23 +09:00
ousttrue
32bc5d6d86
UniVRM-0.111.0
...
バージョン番号の更新。サンプルの更新による差分あり。
2023-06-05 17:07:50 +09:00
ousttrue
cd6db6d127
human bone の index が -1 になりうる?
2023-06-05 17:01:32 +09:00
ousttrue
70dbeb1291
add index -1 check
2023-05-15 13:18:47 +09:00
ousttrue
bd770f8b26
warning
2023-05-15 13:09:53 +09:00
ousttrue
69b952257a
VRMSpringUtility.LoadSecondary 関数が throw しないように修正
...
fix #2023
SpringBone は不完全になるが throw しない。
2023-05-15 13:07:16 +09:00
ousttrue
4c3de71408
UniVRM-0.110.0
...
sample追加あり
2023-04-12 14:12:03 +09:00
Hans
17b095858d
Add missing menu register
2023-04-09 15:10:11 +08:00
ousttrue
7affa42bca
Merge pull request #2015 from ousttrue/version/update_samples
...
copy Samples to Samples~
2023-03-13 16:02:09 +09:00
ousttrue
9356a6f778
copy Samples to Samples~
2023-03-13 15:55:49 +09:00
ousttrue
4bfd536e0e
UniVRM-0.109.0
2023-03-10 13:58:43 +09:00
0b5vr
bf69c34cfc
refactor: the same unityPath can be used for three of them
2023-02-20 17:02:14 +09:00
0b5vr
3c390fe0f3
fix: Fix vrmAssetPostprocessor
...
it was processing directories end with `.vrm` by mistake, which occurs with `Packages/com.vrmc.vrm`
2023-02-20 16:55:32 +09:00
amamagi
e663091fee
feat: Add ITextureDeserializer parameter to Vrm10.LoadXXXAsync() and VrmUtility.LoadXXXAsync()
2023-01-11 11:43:58 +09:00
0b5vr
9c194d55e7
refactor: SpringBoneEditor, change FindProperty specifier from string literal to nameof
...
Addressing https://github.com/vrm-c/UniVRM/pull/1952#discussion_r1044133280
Addressing https://github.com/vrm-c/UniVRM/pull/1952#discussion_r1044133784
2022-12-09 16:03:45 +09:00
0b5vr
a56bdbb3fe
fix: Add [CanEditMultipleObjects] to VRMSpringBoneEditor
...
Addressing https://github.com/vrm-c/UniVRM/pull/1952#discussion_r1044140283
2022-12-09 15:59:56 +09:00
0b5vr
907f8ec33f
fix: rename VRM10SpringBoneJointEditor -> VRMSpringBoneEditor
...
Addressing https://github.com/vrm-c/UniVRM/pull/1952#discussion_r1044132637
2022-12-09 15:59:17 +09:00
0b5vr
cd88d0744f
feature (VRM0, SpringBone): add limit break slider to spring bone joint properties
2022-12-08 20:40:15 +09:00
ousttrue
e16dd2f8c0
Merge pull request #1943 from ousttrue/version/v0_108_0
...
UniVRM-0.108.0
2022-12-05 20:35:37 +09:00
Masataka SUMI
0a7ac08dac
specify a Shader instead of a string in MaterialDescriptor.
2022-12-05 17:21:20 +09:00
Masataka SUMI
3ad42a262e
fix
2022-12-05 17:05:21 +09:00
Masataka SUMI
847b2703bc
Remove concrete VRM shader's info from UniGLTF.
2022-12-05 17:03:48 +09:00
ousttrue
92caf36471
UniVRM-0.108.0
2022-12-05 16:45:35 +09:00
Masataka SUMI
2f915b4777
Take off responsibility of determining shaders from ImporterContext.
2022-12-05 16:30:43 +09:00
Isamu Mogi
b2b11dc6f3
Use new ArraySegment<byte>(Array.Empty<byte>()) instead of default(ArraySegment<byte>)
...
`default(ArraySegment<byte>).ToArray()` throws `InvalidOperationException` since Unity 2021.
It fails `VRMTextureEnumerateTests`. Use `new ArraySegment<byte>(Array.Empty<byte>())` instead.
Confirmed to work with Unity 2020.3.34f1, 2021.3.13f1 and 2022.1.23f1.
fixes https://github.com/vrm-c/UniVRM/issues/1934
2022-11-30 02:47:21 +09:00
ousttrue
3b9827c9a1
Merge pull request #1925 from saturday06/remove-detectinvalidcharacters-test
...
Windows以外でDetectInvalidCharactersテストが失敗する。テスト対象メソッドがもう使われていないのでテスト自体を削除
2022-11-22 15:03:48 +09:00
Masataka SUMI
ecebd7b715
Add baseColorFactor migration of older vrm file
2022-11-16 18:32:51 +09:00
Isamu Mogi
d1cd273aa8
Windows以外でDetectInvalidCharactersテストが失敗する。テスト対象メソッドがもう使われていないのでテスト自体を削除
...
macOS上のUnity 2020.3.34f1でDetectInvalidCharactersテストが失敗していました。テスト対象メソッドの
Path.GetInvalidFileNameCharsの実装をUnityのレポジトリで確認したところ
https://github.com/Unity-Technologies/mono/blob/2020.3.34f1/mcs/class/corlib/System.IO/Path.cs#L560-L571
Windows以外の環境では、必ずテストに失敗することがわかりました。
調査したところ、Path.GetInvalidFileNameChars自体がUniVRMとそのサブモジュールですでに使われていないことが判明したため
テスト自体が不要になったと考え、削除しました。
2022-11-15 18:19:11 +09:00
Masataka SUMI
77e87eba38
rename vrm material importer class names
2022-11-10 21:38:36 +09:00
Masataka SUMI
bd63c7e14f
mv function of importing material name
2022-11-10 21:30:13 +09:00
Masataka SUMI
9f16a268a6
rename
2022-11-10 21:26:02 +09:00
ousttrue
d25f6d3f24
UniVRM-0.107.0
2022-11-09 16:27:28 +09:00
ousttrue
1345972859
Merge pull request #1905 from mkc1370/feature/support_packages_directory
...
UnityPathでパッケージ管理下のファイルを扱えるように
2022-11-09 13:27:07 +09:00
Masataka SUMI
521f0e9871
Merge branch 'master' of https://github.com/vrm-c/UniVRM into fixEmissionColorSpace
2022-11-07 14:14:33 +09:00
Masataka SUMI
6503493438
Migrate materials when importing a VRM 0.x model.
2022-11-04 23:39:57 +09:00
Masataka SUMI
d0d845ab2a
Remove supporting legacy vrm shaders.
2022-11-04 21:48:54 +09:00
Masataka SUMI
36e9ca8605
fix directory name cases
2022-11-04 16:28:04 +09:00
Masataka SUMI
6fe4f9ac24
stop inheritance
2022-11-04 16:11:45 +09:00
Masataka SUMI
1ff83272de
format directory structure about VRM material IO
2022-11-04 15:45:05 +09:00
Masataka SUMI
77272ac6e7
rename glTF material exporters
2022-11-04 15:37:52 +09:00
Masataka SUMI
326bdf9efc
Merge branch 'master' of https://github.com/vrm-c/UniVRM into refactorMaterialExporter
2022-11-04 14:28:16 +09:00
ousttrue
1ca2d14100
Merge pull request #1904 from Santarh/suppressPreprocessor
...
Use static getter instead of preprocessors.
2022-11-04 14:06:37 +09:00
Masataka SUMI
f8ac8075e7
use static getter instead of preprocessors.
2022-11-03 20:58:14 +09:00
mkc1370
5043781ebf
Added support for paths within editable Packages to UnityPath
2022-11-03 20:20:46 +09:00
Masataka SUMI
7a0745b5cd
Remove Obsolete method
2022-11-03 17:33:16 +09:00
Masataka SUMI
6446b7b0fa
mv
2022-11-03 02:14:31 +09:00