VRC SDK3・UdonSharp(Udon#, U#)向けの便利なスクリプト集(機能集)です✨
SDK3でVRChatワールド開発をしてみたものの、Udon GraphやUdonSharpで機能が実装できない人向けのアセットになります!
MIT
#!/bin/bash | |
# Currently on NTFS, WSL2's git is too heavy. | |
sub_cmd=$1 | |
function should_use_windows_git () { | |
[[ $(pwd) =~ '^/mnt/' ]] \ | |
|| [[ $(pwd) =~ '/home/aiya000/Windows' ]] \ | |
|| [[ $(pwd) =~ '/home/aiya000/Desktop' ]] |
#!/bin/bash | |
# Currently on NTFS, WSL2's git is too heavy. | |
sub_cmd=$1 | |
function should_use_windows_git () { | |
[[ $(pwd) =~ '^/mnt/' ]] \ | |
|| [[ $(pwd) =~ '/home/aiya000/Windows' ]] \ | |
|| [[ $(pwd) =~ '/home/aiya000/Desktop' ]] |
The MIT License (MIT) | |
Copyright (c) 2021 aiya000 | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
Param([String]$title = "VRChat") | |
<# Description, Setup, and License {{{ | |
# Record-Replay-VRChat | |
## What is this? | |
An easy way to record replay of games via 'Xbox Game Bar'. | |
## Setup |
module.exports = { | |
env: { | |
browser: true, | |
es6: true, | |
node: true, | |
}, | |
extends: ['plugin:import/errors', 'plugin:import/warnings', 'plugin:import/typescript'], | |
parser: '@typescript-eslint/parser', | |
parserOptions: { | |
project: 'tsconfig.json', |
const chars = [ | |
'亜', | |
'哀', | |
'挨', | |
'愛', | |
'曖', | |
'悪', | |
'握', | |
'圧', | |
'扱', |
#!/bin/bash | |
negative_state=$(cat <<- END | |
{ | |
"state": "failure", | |
"context": "poi", | |
"description": "hi" | |
} | |
END | |
) | |
echo "$negative_state" |
module.exports = { | |
trailingComma: 'all', | |
tabWidth: 2, | |
semi: false, | |
singleQuote: true, | |
printWidth: 100, | |
} |
module.exports = { | |
root: true, | |
env: { | |
browser: true, | |
node: true, | |
}, | |
extends: [ | |
'@nuxtjs/eslint-config-typescript', | |
'@vue/prettier', | |
'@vue/prettier/@typescript-eslint', |