- 自分のプロジェクトを事前に作っておく
- コピー元の作業について
- VR Templateでプロジェクトを作る
- プロジェクト設定 -> エンジン -> インプットをエクスポートする
VirtualRealityBP/Blueprints/MotionControllerPawnを右クリックしてアセットアクション -> 移行を選び、自分のプロジェクトのContentに移行する
- コピー先の作業について
- プロジェクト設定 -> エンジン -> インプットにインポートする
- 移行した
MotionControllerPawnをマップに配置するMotionControllerPawnのZ座標を床のZ座標と同じ高さに修正する
MotionControllerPawnの詳細のAuto Process PlayerをPlayer0に変更する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if !UNITY_2018_1_OR_NEWER | |
| using System.IO; | |
| using System.Linq; | |
| using UnityEditor; | |
| using UnityEditor.Callbacks; | |
| public class SteamVROverlayBuildHelper | |
| { | |
| const string OpenVrApiDll = "openvr_api.dll"; | |
| [PostProcessBuild(1)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if UNITY_EDITOR_OSX | |
| using System.IO; | |
| using UnityEngine; | |
| using UnityEditor; | |
| using UnityEditor.Callbacks; | |
| using UnityEditor.iOS.Xcode; | |
| public class BuildHelper | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.IO; | |
| using UnityEditor; | |
| using UnityEditor.SceneManagement; | |
| using UnityEngine.Experimental.Rendering; | |
| using UnityEngine.Rendering; | |
| [InitializeOnLoad] | |
| public static class ApplyRenderPipeline | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --------- beginning of main | |
| 07-01 16:22:42.482 1574 1676 I [OAR] PanelAppAnalytics: Panel render last: 7448ms avg: 1634ms for com.oculus.vrshell/com.oculus.vrshell.panels.anytimeui.AnytimeUIAndroidPanelService | |
| 07-01 16:22:42.885 1548 1548 I com.oculus.telemetry.TelemetryService: flushing collectors | |
| 07-01 16:22:42.888 1548 1548 D com.oculus.telemetry.TelemetryService: Event flushed: oculus_os_thermal {"build":"oculus\/vr_pacific\/pacific:7.1.2\/N2G48H\/27130.12430.180:user\/release-keys","flavor":"user","realtime_ms":791496,"uptime_ms":706259,"front_plate_temperature_min":33,"front_plate_temperature_max":36,"front_plate_temperature_total":1045,"front_plate_temperature_total_square":36425,"cpu_temperature_min":47,"cpu_temperature_max":52,"cpu_temperature_total":1569,"cpu_temperature_total_square":82515,"gpu_temperature_min":44,"gpu_temperature_max":49,"gpu_temperature_total":1398,"gpu_temperature_total_square":65242,"nb_samples":30} | |
| 07-01 16:22:43.202 1574 3819 I VrApi : FPS=72,Prd=26ms,Tear=0,Early=0 |
この手順はWindowsを対象とする
How to Buildの通り
Fess 11.1xブランチを自前ビルド
ビルド時のHEADは https://github.com/codelibs/fess/commit/c7841013ab222158b440ab5df5ab18be6429d37c
fess-crawloer.logに出てきたエラーパターン
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * refs | |
| * http://tips.hecomi.com/entry/2014/11/11/021147 | |
| * http://d.hatena.ne.jp/nakamura001/20120724/1343148980 | |
| * https://gist.github.com/keijiro/3806478 | |
| * https://codepen.io/DavidSabine/pen/kyAlJ | |
| * https://femurdesign.com/theremin/ | |
| */ | |
| using UnityEngine; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import io.vertx.core.json.JsonArray; | |
| import io.vertx.redis.RedisOptions; | |
| import io.vertx.rxjava.core.Vertx; | |
| import io.vertx.rxjava.redis.RedisClient; | |
| import rx.Observable; | |
| public class Main { | |
| public static void main(String[] args) { | |
| Vertx vertx = Vertx.vertx(); | |
| RedisOptions options = new RedisOptions(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM centos:6 | |
| MAINTAINER Mitsuhiro Koga<shiena.jp@gmail.com> | |
| ENV user ${user:-developer} | |
| ENV host ${host:-192.168.99.1} | |
| # Xfceのためにepelをインストール | |
| # install_chrome.shのためにwgetをインストール | |
| # gitをビルドするためにtar curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-ExtUtils-MakeMakerをインストール | |
| # 日本語環境、デスクトップ環境、開発環境、インターネットのためにgroupinstall |