- この文章はmalaが書いています。個人の見解であり所属している企業とは関係ありません。
- noteには知り合いが何人かいるし、中の人と直接コンタクトも取っているし相談もされているが、(10月2日時点で)正規の仕事としては請け負っていない。
10月2日追記
- 正規の仕事として請け負う可能性もありますが、自身の主張や脆弱性情報の公開に制限が掛かるのであれば引き受けないつもりです。
| using UnityEditor; | |
| using UnityEngine.UIElements; | |
| public class LocalizedPropertyField : VisualElement | |
| { | |
| // Because it is currently the only simple way to dynamically update label content | |
| public LocalizedPropertyField(SerializedProperty property, LocalizedContent locLabel) | |
| { | |
| Add(new IMGUIContainer(() => | |
| { |
2020-05-13 追記
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| // munged from https://github.com/simontime/Resead | |
| namespace sead | |
| { | |
| class Random | |
| { |
| using System; | |
| using UnityEditor; | |
| using UnityEngine; | |
| public static class EditorGUILayoutWrapper | |
| { | |
| public static bool Button( Texture image, params GUILayoutOption[] options ) | |
| { | |
| return GUILayout.Button( image, options ); | |
| } |
| //#define TMP_ROUND_DECIMALS // When defined, float and double values are rounded using Math.round | |
| using TMPro; | |
| public static class TMP_IntegerText | |
| { | |
| private static readonly char[] arr = new char[64]; // prefix + number + postfix can't exceed this capacity! | |
| private static int charIndex = 0; | |
| public static void SetText( this TMP_Text text, sbyte number ) |
| #!/usr/bin/env python | |
| # vim: set fileencoding=utf-8 | |
| # | |
| # USAGE: | |
| # Back up your tmux old config, run the script and redirect stdout to your conf | |
| # file. Example: | |
| # | |
| # $ cp ~/.tmux.conf ~/.tmux.conf.orig | |
| # $ python ./tmux-migrate-options.py ~/.tmux.conf.orig > ~/.tmux.conf | |
| # |
| # | |
| # This is the main Apache HTTP server configuration file. It contains the | |
| # configuration directives that give the server its instructions. | |
| # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. | |
| # In particular, see | |
| # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> | |
| # for a discussion of each configuration directive. | |
| # | |
| # Do NOT simply read the instructions in here without understanding | |
| # what they do. They're here only as hints or reminders. If you are unsure |