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 UnityEditor; | |
| using UnityEngine; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| public class AssetSizeViewer : EditorWindow | |
| { | |
| private Vector2 scroll; | |
| private List<(string path, long size)> assetSizes = new(); |
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
| #!/bin/bash | |
| # チェリーピックするコミットハッシュを格納したファイル | |
| commit_file="commits.txt" | |
| # ファイルが存在するかチェック | |
| if [ ! -f "$commit_file" ]; then | |
| echo "Commit file not found: $commit_file" | |
| exit 1 | |
| fi |
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
| # This file may be used to create an environment using: | |
| # $ conda create --name <env> --file <this file> | |
| # platform: win-64 | |
| @EXPLICIT | |
| https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda | |
| https://conda.anaconda.org/nvidia/label/cuda-11.8.0/win-64/cuda-cccl-11.8.89-0.tar.bz2 | |
| https://conda.anaconda.org/nvidia/label/cuda-11.8.0/win-64/cuda-cudart-11.8.89-0.tar.bz2 | |
| https://conda.anaconda.org/nvidia/label/cuda-11.8.0/win-64/cuda-cuobjdump-11.8.86-0.tar.bz2 | |
| https://conda.anaconda.org/nvidia/label/cuda-11.8.0/win-64/cuda-cupti-11.8.87-0.tar.bz2 | |
| https://conda.anaconda.org/nvidia/label/cuda-11.8.0/win-64/cuda-cuxxfilt-11.8.86-0.tar.bz2 |
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; | |
| using UnityEngine; | |
| using Object = UnityEngine.Object; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| #endif | |
| [Serializable] |
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.Runtime.InteropServices; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using UnityEditor; | |
| using UnityEngine; | |
| namespace ChangeEditorColorFromPath | |
| { | |
| #if UNITY_EDITOR_WIN |
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 UniRx; | |
| using UniRx.Triggers; | |
| using Unity.Entities; | |
| using Unity.Mathematics; | |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| public abstract partial class BaseComponentSystem<T> : ComponentSystem where T : struct | |
| { |