# 飛機彈幕射擊遊戲 ## UI ![](https://i.imgur.com/GanesER.gif) 音量開關、音量大小調整、中英切換、解析度調整(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; } } ``` #### 進場動畫 ![](https://i.imgur.com/stUXkih.gif) RawImage ## 遊戲展示 ![](https://i.imgur.com/9JIh1h0.gif) ![](https://i.imgur.com/WXAyptb.png =270x%)