Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Getting Started with VRChat Udon
Search
joniburn
March 25, 2020
Programming
0
1.3k
Getting Started with VRChat Udon
joniburn
March 25, 2020
Tweet
Share
More Decks by joniburn
See All by joniburn
VRChat World Optimization
joniburn
0
1.7k
Customize Avatar Textures using Clip Studio Paint
joniburn
0
1.5k
Panty Patch WebApp
joniburn
1
1.5k
VRChat VRC_Panorama Slide System
joniburn
2
2.2k
VRChat Avatar Optimization
joniburn
1
3.2k
Other Decks in Programming
See All in Programming
ふつうのRubyist、ちいさなデバイス、大きな一年 / Ordinary Rubyists, Tiny Devices, Big Year
chobishiba
1
400
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
7.7k
今更考える「単一責任原則」 / Thinking about the Single Responsibility Principle
tooppoo
3
1.5k
API Platformを活用したPHPによる本格的なWeb API開発 / api-platform-book-intro
ttskch
1
120
New in Go 1.26 Implementing go fix in product development
sunecosuri
0
370
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
170
守る「だけ」の優しいEMを抜けて、 事業とチームを両方見る視点を身につけた話
maroon8021
3
390
Go 1.26でのsliceのメモリアロケーション最適化 / Go 1.26 リリースパーティ #go126party
mazrean
1
360
TipKitTips
ktcryomm
0
160
AHC061解説
shun_pi
0
340
SourceGeneratorのマーカー属性問題について
htkym
0
170
LangChain4jとは一味違うLangChain4j-CDI
kazumura
1
150
Featured
See All Featured
Agile Actions for Facilitating Distributed Teams - ADO2019
mkilby
0
140
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
290
We Are The Robots
honzajavorek
0
190
How STYLIGHT went responsive
nonsquared
100
6k
The Pragmatic Product Professional
lauravandoore
37
7.2k
Evolving SEO for Evolving Search Engines
ryanjones
0
150
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
Beyond borders and beyond the search box: How to win the global "messy middle" with AI-driven SEO
davidcarrasco
3
66
Git: the NoSQL Database
bkeepers
PRO
432
66k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
12
1.1k
Faster Mobile Websites
deanohume
310
31k
How to Talk to Developers About Accessibility
jct
2
150
Transcript
Udon触ってみた @joniburn
自己紹介- みんな自己紹介のスライド入れるから作ってみた - <青肌はいいぞ バーチャル青肌一般人のじょにさんだよ キッシュちゃんパンツパッチ GUIよろしくね https://joniburn.github.io/quiche-pantie-patch-gui/
VRChat Udon • VRChatでワールドギミックを作るための 新しいしくみ • 従来よりもプログラムを組む感じで作れる • 現在はOPEN ALPHA
• https://ask.vrchat.com/t/getting-started-with-udon/80
触ってみよう 1. Unity 2018.4.19f1で新しいプロジェクトを作る
触ってみよう 2. VRCSDK3とUdon SDKをインポート VRCSDKは現在バージョン2と3の2系統 ※併用不可 VRCSDK2 VRCSDK3 Udon SDK
従来の VRC_Triggerによるギミック 新しいUdon 両方インポート
触ってみよう 3. SampleSceneをワールドにしていく VRCWorldを配置
触ってみよう 3. SampleSceneをワールドにしていく 床を配置
触ってみよう 3. SampleSceneをワールドにしていく VRCMirror(鏡)を設置
触ってみよう 4. ここまでで一度ローカルテストしてみる ※2020/03/24現在、VRChatをopen-betaに切り替える必要あり
触ってみよう 5. 鏡の横にCubeを配置 (これをオンオフスイッチにする) ここまではUdon以前と一緒!
触ってみよう 6. スイッチにUdon Behaviourを追加→New Programを追加
触ってみよう 7. いざ、オープンザUdon Graph
触ってみよう 8. Udon Graph Editorが開く
触ってみよう 9. こうします。完成!
解説 public GameObject m_target;
解説 m_target.GetActiveSelf()
解説 public OnInteract() { if (m_target.GetActiveSelf()) { … } }
解説 m_target.SetActive(false); m_target.SetActive(true);
おわり