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; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
using System.Linq; | |
namespace #SCRIPTNAME# | |
{ | |
public class #SCRIPTNAME# : EditorWindow | |
{ |
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 UdonSharp; | |
using UnityEngine; | |
using UnityEngine.UI; | |
using VRC.SDKBase; | |
using VRC.Udon; | |
using VRC.Udon.Common.Interfaces; | |
public class NPCDressChanger : UdonSharpBehaviour | |
{ |
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
#[使い方] | |
# 1. ショートカットを作成する。リンク先は以下のような感じにする | |
# [powershell.exeの絶対パス] -ExecutionPolicy RemoteSigned -File [text_counter.ps1(このファイル)の絶対パス] | |
# 2. 採点するpdfファイルをAdobeAcrobatReaderDCの"ファイル(F)>テキストとして保存"でutf-8のtxtファイルに変換する | |
# 3. 1で作ったショートカットに2で作ったtxtファイルをD&Dする | |
#自動文字数検索では小節以下のタイトルも文字数に含めている | |
#図タイトルは文字数に含めないようにしている | |
#英数列は1文字ずつに分けて文字数として計算している(count = 5文字、0.1km = 5文字) |
OlderNewer