Skip to content

Instantly share code, notes, and snippets.

View xrdnk's full-sized avatar
🏠
Working from home

Denik xrdnk

🏠
Working from home
View GitHub Profile
@neon-izm
neon-izm / HumanTrait.MuscleNames.csv
Created September 17, 2018 02:36
HumanPose.musclesの中身の95個のfloatはこんな感じ。55から94に指の情報が入っている
0 Spine Front-Back
1 Spine Left-Right
2 Spine Twist Left-Right
3 Chest Front-Back
4 Chest Left-Right
5 Chest Twist Left-Right
6 UpperChest Front-Back
7 UpperChest Left-Right
8 UpperChest Twist Left-Right
9 Neck Nod Down-Up
@DrSharky
DrSharky / Caret.cs
Last active August 14, 2023 07:05
A script for Unity3D to customize the caret of a Text Mesh Pro Input Field game object.
using System.Collections;
using UnityEngine;
using TMPro;
using System;
/// <summary>
/// This class is for creating a custom caret for TextMeshPro InputField GameObjects in Unity.
/// </summary>
public class Caret : MonoBehaviour
{
using System.Buffers;
public class LargeArray<T> : IBufferWriter<T>
{
const int MaxArrayLength = 0X7FEFFFFF; // 0x7FFFFFC7;
readonly List<Memory<T>> completedChunks;
readonly long length;
readonly long chunkSize;