コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】Trello にカードを追加できる「Trello Cards For Unity」紹介

はじめに

「Trello Cards For Unity」を Unity プロジェクトに導入することで
Trello にカードを追加できるようになります

使用例

using System.Collections;
using UnityEngine;

public class Example : MonoBehaviour
{
    private IEnumerator Start()
    {
        var trello = new Trello.Trello( "【Trello のキー】", "【Trello のトークン】" );

        // ボードの設定
        yield return trello.populateBoards();
        trello.setCurrentBoard( "【ボードの名前】" );

        // リストの設定
        yield return trello.populateLists();
        trello.setCurrentList( "【リストの名前】" );

        // カードの作成
        var card = trello.newCard();
        card.name = "【カードの名前】";
        card.desc = "【カードの説明文】";
        card.due = "【カードの日時】";

        yield return trello.uploadCard( card );
    }
}

関連記事