10/17 (土曜日) 15時開始
- VRChat & Discord
# | |
# Dockerfile | |
# | |
# Created by sansuke05. | |
# This file is licensed under the GNU Lesser General Public License v3.0 - see the LGPL_LICENSE file for details. | |
# https://gist.github.com/sansuke05/c4e79e1815d41f70f962bdf03d9f39f0#file-lgpl_license | |
# | |
FROM ubuntu:20.04 | |
USER root |
mask = io.imread('./mask/mask_cynthia.png') | |
def convert_cynthia_pantie(image): | |
pantie = np.array(image) | |
patch = np.copy(pantie[-100:-5, 546:, :]) | |
pantie[-100:, 546:, :] = 0 | |
patch = skt.resize(patch[::-1, ::-1, :], | |
(patch.shape[0] + 30, patch.shape[1]), | |
anti_aliasing=True, | |
mode='reflect') |
Discord&VRChatを使った Vue.js dockerもくもく会の資料
Discord&VRChatを使った Vue.js もくもく会の資料
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class Timer : MonoBehaviour { | |
private float totalTime; | |
[SerializeField] | |
private int min; |
Shader "Custom/Rainbow" { | |
Properties { | |
_BaseColor("Base Color", Color) = (0, 0, 0, 1) | |
_MaskTex("Mask Texture", 2D) = "white" {} | |
_Speed("Speed", Range( 0 , 3)) = 0.2 | |
_Value("Value", Range( 0 , 1)) = 0.5 | |
_Saturation("Saturation", Range( 0 , 1)) = 0.5 | |
} | |
SubShader { | |
Tags { |
\documentclass[ams]{U-AizuGT} | |
\usepackage{pifont} | |
\usepackage{graphicx} | |
\usepackage{cite} | |
\bibliographystyle{ieice} | |
\author{name1} | |
\studentid{6000000} | |
\supervisor{name2} |
Shader "Custom/Circle" { | |
Properties { | |
_MainTex("Main Texture", 2D) = "white" {} | |
_Color("Base Color", Color) = (0, 0, 0, 1) | |
} | |
SubShader { | |
Tags { | |
"RenderType" = "Opaque" | |
} | |
LOD 200 |