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; | |
| using System.IO; | |
| using System.Text; | |
| namespace NekomimiDaimao | |
| { | |
| /// https://gist.github.com/nekomimi-daimao/ee205e6d3949aa672913474107f542d1 | |
| public class TextFileWriter : IDisposable | |
| { | |
| private readonly StreamWriter _streamWriter; |
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.Text; | |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| namespace NekomimiDaimao | |
| { | |
| /// https://gist.github.com/nekomimi-daimao/48938c1de1e91550a34984cdfc03b702 | |
| public class XRLogger : MonoBehaviour | |
| { |
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; | |
| using System.Threading.Tasks; | |
| using PolyToolkit; | |
| using UnityEngine; | |
| namespace NekomimiDaimao.Poly | |
| { | |
| public static class PolyTasker | |
| { | |
| public static Task<PolyListAssetsResult> SearchListAssetsAsync(PolyListAssetsRequest assetsRequest) |
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; | |
| using ExitGames.Client.Photon; | |
| using Photon.Pun; | |
| using Photon.Realtime; | |
| using UnityEngine; | |
| /// <summary> | |
| /// RaiseEventのラッパー. | |
| /// |
NewerOlder