Skip to content

Unity 2018/Unity5 VR Modification (for Illusion Plugin Architecture)

License

Notifications You must be signed in to change notification settings

obtdai/VRMOD.Template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VRMOD.Template

Unity3Dで作成されたゲームをVR化するMOD.

MOD for making games created in Unity 3D compatible with VR.

必要なツール Requirement tool.

IPA(Illusion Plugin Architecture)

UABE(Unity Asset Bundle Extractor)

ソースコード使用方法 Using Source Code.

  1. プロジェクトをチェックアウト Checkout the project
git clone --recursive https://github.com/obtdai/VRMOD.Template.git
cd VRMOD.Template
  1. slnファイル(.sln) を開く Open the Solution (.sln) File.
  2. Release設定でビルドを開始する. Start the build in the Release configuration.

Running

  1. IPA.exeにゲームの実行ファイルをドラッグしてパッチをあてる(1回のみ) Patch your game by dragging its executable on IPA.exe (only has to be done once).
  2. 通常ゲームはSteamVRが起動している時VRモードで起動する(シアターモードは無効化する) (By default, the game will now boot into VR mode when SteamVR is running (make sure Desktop Game Theatre is disabled)).

Release成果物の利用方法 (Usage the release.)

  1. 成果物をReleaseページからダウンロード (Download release from the release page)
  2. 解凍したコンテンツをUnityゲームのフォルダに格納する (Extract contents into a Unity folder)
  3. ゲームの実行ファイルをIPA.exeにドラッグする (Drag the game executable onto IPA.exe)
  4. ゲームにパッチを当てる. (Patching Your Game).

Runnning

SteamVRを実行した状態でゲームを開始するか、 --vr をつけて起動する. (Start the game while SteamVR is running or use the --vr flag.)

パッチ当て方法 How to Patching

  • ゲームインストールフォルダにある「ゲーム名_Data/globalgamemanagers」をUABEで開く。(Open "Game name_Data/globalgamemanagers" in the game installation folder with UABE.)

  • Path ID列が11のTypeがBuild Settingsとなっている行を選択し、Export Dumpを行う。(Select the row whose Path ID column is 11 and whose Type is Build Settings, and perform Export Dump.)

  • 作成されたダンプファイルを開き、22行目の0 vector enabledVRDevicesから0 int size = 0までを下記のように修正。 (Open the created dump file and fix from 0 vector enabledVRDevices on line 22 to 0 int size = 0 as shown below.)

修正前 preview fix

0 vector enabledVRDevices
0 Array Array (0 items)
0 int size = 0

修正後 after fix

0 vector enabledVRDevices
0 Array Array (2 items)
0 int size = 2
[0]
1 string data = "OpenVR"
[1]
1 string data = "None"

*1)0 vector buildTags の前行まで置き換える/0 Replace the previous line of vector buildTags.
*2)"Oculus"にすればOculusでも動くかもしれませんが、未確認です。/If it is "Oculus" it may work with Oculus, but it is unconfirmed.

  • 再度UABEでglobalgamemanagerを開き、修正したダンプファイルをインポートして更新してください。
  • Open globalgamemanager again with UABE and import and update the modified dump file.

着座モード(デフォルト) 操作方法 (SeatedMode(Default) Controls)

キー操作 内容
Ctrl+Space デスクトップモニタの表示(View Desktop Monitor)
Ctrl+C, Ctrl+C ルームスケールモードへ変更(Change RoomScale Mode)

ルームスケールモード 操作方法 (RoomScaleMode Controls)

キー操作 内容
Ctrl+C, Ctrl+C 着座モードへ変更(Change Seated Mode)
Menu Button デスクトップモニタの表示(View Desktop Monitor)
Trigger Button マウスクリックエミュレート(Emulation Mouse Click)
Grip Button グリップムーヴによる移動 (Grip Move)

Author

obtdai

Licence

MIT

Copyright

The MIT License (MIT)

Copyright (c) 2016 hecomi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

The MIT License (MIT)

Copyright (c) 2016 hecomi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

The MIT License (MIT)

Copyright (c) 2016 Eusth

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

MIT License

Copyright (c) 2016

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Unity 2018/Unity5 VR Modification (for Illusion Plugin Architecture)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages