自分用めも

初心者ちっくなプログラムネタを中心に、自分用の覚え書きをメモっていくための場所です。

2016-02-12から1日間の記事一覧

bitbucketにgitプロトコルでアクセスする

git

git@bitbucket.org:アカウント名/リポジトリ名.gitUse the SSH protocol with Bitbucket Cloud - Atlassian Documentation

Unityでブラウザリンクを開く

Unity 5.3.2f1 (64-bit)。 public void Link(url) { #if UNITY_EDITOR Application.OpenURL(url); #elif UNITY_WEBGL Application.ExternalEval(string.Format("window.open('{0}','_blank')", url)); #else Application.OpenURL(url); #endif } ブラウザプ…