This file contains 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
#import <Foundation/Foundation.h> | |
@interface ANZTextStyle : NSObject | |
@property (nonatomic, readonly) ANZTextStyle *(^text)(NSString *text); | |
@property (nonatomic, readonly) ANZTextStyle *(^lineHeight)(CGFloat height); | |
@property (nonatomic, readonly) ANZTextStyle *(^breakMode)(NSLineBreakMode mode); | |
@property (nonatomic, readonly) ANZTextStyle *(^align)(NSTextAlignment align); | |
@property (nonatomic, readonly) ANZTextStyle *(^color)(UIColor *color); | |
@property (nonatomic, readonly) ANZTextStyle *(^font)(UIFont *font); |
This file contains 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
/********************************* | |
2015-06-20 | |
Vector3拡張 | |
座標変換参考:http://tsubakit1.hateblo.jp/entry/2016/03/01/020510 | |
*********************************/ | |
using UnityEngine; | |
using UnityEngine.Assertions; | |
public static class Vector3Extension | |
{ |
This file contains 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 UnityEngine; | |
using UnityEngine.UI; | |
using DG.Tweening; | |
public class Guage : MonoBehaviour | |
{ | |
/// <summary> |

This file contains 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
/********************************* | |
* 会話イベントをタイムライン風に表示するやーつ | |
* 参考:http://tsubakit1.hateblo.jp/entry/2015/10/19/022720 | |
*********************************/ | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class Talk : MonoBehaviour |
This file contains 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
/********************************* | |
* Flipしたときに画像差し替えたいな | |
* with DOTween | |
*********************************/ | |
using System; | |
using UnityEngine; | |
using UnityEngine.UI; | |
using DG.Tweening; |
This file contains 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.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
using DG.Tweening; |