This file contains 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 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 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 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 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 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 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. |
This file contains 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 | |
array=(" " "「" "『") | |
formatted="" | |
while read -r line; do | |
if [ -n "$line" ] && [[ ! " ${array[*]} " =~ " "${line::1}" " ]]; then | |
formatted+=" " | |
fi |
This file contains 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 UniRx; | |
using Unity.WebRTC; | |
using UnityEngine; | |
// ReSharper disable InconsistentNaming | |
namespace WebRTC.Extension | |
{ | |
/// <summary> |
NewerOlder