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
// deno run --allow-read --allow-run dirWatcher.ts /absolute/path/watch/ | |
const targetEventKind = ["create", "modify", "rename", "remove"]; | |
// 操作が止まったと判断する時間 | |
const delayMsec = 3000; | |
let promise: Promise<any> | undefined; | |
let resolve; | |
let timeoutId; |
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 Cysharp.Threading.Tasks; | |
using UnityEngine; | |
using UnityEngine.AddressableAssets; | |
using UnityEngine.ResourceManagement.ResourceProviders; | |
using UnityEngine.SceneManagement; | |
namespace Project.Scripts | |
{ | |
public sealed class SceneLifeCycleLogger : 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
volumes: | |
accelerator-volume: | |
driver: "local" | |
services: | |
accelerator: | |
image: unitytechnologies/accelerator | |
volumes: | |
- accelerator-volume:/agent | |
environment: |
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.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEngine; | |
namespace Nekomimi.Daimao.Editor | |
{ | |
public static class CollectDependencies |
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
// deno run --allow-net --allow-read=. server.ts | |
import { serveDir } from "https://deno.land/[email protected]/http/file_server.ts"; | |
Deno.serve((req) => {return serveDir(req);}); |
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.Collections.Generic; | |
using System.Linq; | |
namespace Nekomimi.Daimao | |
{ | |
[Serializable] | |
public class SerializableTable<TKey, TValue> | |
{ | |
public SerializableKeyValue<TKey, TValue>[] table; |
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.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Channels; | |
using System.Threading.Tasks; | |
using Cysharp.Threading.Tasks; | |
using UniRx; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
using Channel = System.Threading.Channels.Channel; |
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 UnityEngine; | |
namespace SerializeAnimation.PoseAccessor | |
{ | |
public sealed class HumanPoseAccessor : MonoBehaviour | |
{ | |
[SerializeField] | |
private Animator animator; | |
private HumanPoseHandler _humanPoseHandler; |
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
# https://github.com/micnncim/action-label-syncer | |
# https://keepachangelog.com/en/1.1.0/ | |
- name: added | |
description: Added for new features. | |
color: 66FF66 | |
- name: changed | |
description: Changed for changes in existing functionality. | |
color: 33FFFF | |
- name: deprecated | |
description: Deprecated for soon-to-be removed features. |
NewerOlder