I hereby claim:
- I am esetomo on github.
- I am ichigomayo (https://keybase.io/ichigomayo) on keybase.
- I have a public key ASCwIzYD1jMMi1J7qe7vG52PCckTno2ziQSc4lzKwEe5Pwo
To claim this, I am signing this object:
| using UnityEngine; | |
| using UnityEditor; | |
| using System.Linq; | |
| public class Clothing : EditorWindow { | |
| [MenuItem("Window/Clothing")] | |
| public static void ShowWindow() | |
| { | |
| GetWindow(typeof(Clothing)); | |
| } |
| import bpy | |
| bone_map = { | |
| "Root_J_New": "Hips", | |
| "Leg_L_J": "LeftLeg", | |
| "Leg_R_J": "RightLeg", | |
| "Hiza_L_J": "LeftKnee", | |
| "Hiza_R_J": "RightKnee", | |
| "Ashikubi_L_J": "LeftFoot", | |
| "Ashikubi_R_J": "RightFoot", |
| Shader "Unlit/PanoStereo" | |
| { | |
| Properties | |
| { | |
| _MainTex ("Texture", 2D) = "white" {} | |
| } | |
| SubShader | |
| { | |
| Tags { "RenderType"="Opaque" } | |
| LOD 100 |
I hereby claim:
To claim this, I am signing this object:
| # frozen_string_literal: true | |
| source "https://rubygems.org" | |
| gem 'mail' | |
| gem 'mastodon-api', require: 'mastodon', github: 'tootsuite/mastodon-api' |
| SWIFT_ENABLED=true | |
| SWIFT_USERNAME=gncuなんとか | |
| SWIFT_TENANT=gnctなんとか | |
| SWIFT_PASSWORD=[APIパスワード] | |
| SWIFT_AUTH_URL=https://identity.tyo1.conoha.io/v2.0/tokens | |
| SWIFT_CONTAINER=mayodon | |
| SWIFT_OBJECT_URL=https://media.s-tomo.jp/mayodon |
| guard :shell do | |
| watch(%r{(.+)\.svg}) do |m| | |
| %w(Small 40 60 76).each do |size| | |
| ['', '@2x'].each do |scale| | |
| width = size.to_i | |
| width = 32 if width == 0 | |
| width *= 2 if scale == '@2x' | |
| system("inkscape #{m[0]} --export-png=#{m[1]}-#{size}#{scale}.png --export-area-page --export-width=#{width}") | |
| end | |
| end |
| string html = " | |
| <!doctype html> | |
| <script src='http://code.jquery.com/jquery-2.1.0.min.js'></script> | |
| <script src='http://cdn.jsdelivr.net/jquery.minicolors/2.1.2/jquery.minicolors.js'></script> | |
| <link rel='stylesheet' href='http://cdn.jsdelivr.net/jquery.minicolors/2.1.2/jquery.minicolors.css'/> | |
| <style> | |
| input{border: black solid 1px;} | |
| </style> | |
| <input id='color' type='text' value='#000000'> | |
| <script> |
| # -*- coding: utf-8 -*- | |
| import bpy.ops | |
| import bmesh | |
| import os | |
| workdir = os.path.dirname(bpy.data.filepath) | |
| os.chdir(workdir) | |
| outdir = os.path.join(workdir, 'out') | |
| rev = os.popen("git log --pretty=oneline -1 head.blend export.py | cut --fields=1 --delimiter=' '").read()[0:6] |
| diff -r 5c4dc17956b9 indra/llui/lltexteditor.cpp | |
| --- a/indra/llui/lltexteditor.cpp Fri Aug 16 13:05:38 2013 +0100 | |
| +++ b/indra/llui/lltexteditor.cpp Fri Aug 16 17:18:26 2013 +0100 | |
| @@ -2782,6 +2782,9 @@ | |
| BOOL LLTextEditor::getPreeditLocation(S32 query_offset, LLCoordGL *coord, LLRect *bounds, LLRect *control) const | |
| { | |
| + static LLUICachedControl<S32> preedit_marker_thickness ("UIPreeditMarkerThickness", 0); | |
| + static LLUICachedControl<S32> preedit_standout_thickness ("UIPreeditStandoutThickness", 0); | |
| + |