# 飛機彈幕射擊遊戲 ## UI  音量開關、音量大小調整、中英切換、解析度調整(Platform:computer) 根據平台找文檔放置的路徑 ```csharp private void Awake() { CHPath = Application.streamingAssetsPath + "/CH.txt"; ENPath = Application.streamingAssetsPath + "/EN.txt"; switch (Platforms) { case Platform.Moblie: CHreader = new WWW(CHPath); ENreader = new WWW(ENPath); CHDatas= CHreader.text.Split("\n"); ENDatas = ENreader.text.Split("\n"); break; case Platform.PC: CHData = File.ReadAllText (CHPath); ENData = File.ReadAllText(ENPath); CHDatas = CHData.Split("\n"); ENDatas = ENData.Split("\n"); break; } } ``` #### 進場動畫  RawImage ## 遊戲展示  
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up