memomem

備忘録・メモ置き場

2023-10-01から1ヶ月間の記事一覧

Unity LogFile コマンドライン引数

スタンドアロンのexeに対してコマンドライン引数で指定可能。 -logFile <pathname><fileName.log> ログを生成するpathを指定 -nolog ログ出力を行わない</filename.log></pathname>

Quest3 Multiviewで Geometry Shaderが動かない

動かない。 マクロをいれてみたりしたが動かず OpenGL ES を選択しても動かず なにかやり方が悪いのか、不明だが現状動かず。。 Multi Pass なら問題なく動く。 参考 discussions.unity.com qiita.com docs.unity3d.com discussions.unity.com redhologerber…

Android 自動起動

www.itcowork.co.jp

Meta Quest SharedSpatialAnchors

SharedSpatialAnchorsサンプル github.com Shared Spatial Anchors Sample: Unity | Oculus Developers Use Shared Spatial Anchors: Unity | Oculus Developers 参考 共有空間アンカートラブルシューティングガイド ポイントクラウドデータを共有するための…

Meta Quest3 Depth API

Githubにサンプルがある github.com Package Managerで「Add package by name...」し下記を記載し「Add」 Name: com.unity.xr.oculus Version: 4.2.0-exp-env-depth.1 「Add package from git URL...」より https://github.com/oculus-samples/Unity-DepthAP…

Quest3 ことはじめ

note.com tech.framesynthesis.co.jp note.com Meta Quest Dev Center - Meta Quest Developer Hub

Unity VideoPlayer "Unexpected timestamp values detected. This can occur in H.264 videos not encoded with the baseline profile. "

UnityのVideoPlayerで Unexpected timestamp values detected. This can occur in H.264 videos not encoded with the baseline profile. 表示される。 mp4フォーマットがmainprofileのため発生する。 H264 baseprofileを使用する。 参考 redrabbitnet.haten…

Arduinoでのイベント

// イベント実装方法サンプル // https://github.com/bakercp/PacketSerial/blob/master/src/PacketSerial.h class BtnInput { public: typedef void (*BtnPressHandler)(bool v); BtnInput(int buttonPin_, int pushLimit_){ buttonPin = buttonPin_; pushL…