Unity key related command
Get Sha1 (Reference)
keytool -list -v -keystore [KEY]Get Key Hash (Reference)
keytool -exportcert -alias lazylinkr -keystore [KEY] | openssl sha1 -binary | openssl base64
堆積各式雜物
Get Sha1 (Reference)
keytool -list -v -keystore [KEY]Get Key Hash (Reference)
keytool -exportcert -alias lazylinkr -keystore [KEY] | openssl sha1 -binary | openssl base64
Labels: unity
localrc repository
https://github.com/vim-scripts/localrc.vim
https://github.com/thinca/vim-localrc
.vimrc (with Vundle)
Bundle 'https://github.com/thinca/vim-localrc'.local.vimrc
call localrc#load('.local.vimrc', getcwd())
setlocal tabstop=4
setlocal shiftwidth=4
setlocal softtabstop=4
Labels: vim
I bought the Plugin from Reign-Studios. There are examples in the DemoScenes directory. The environment is Visual Studio 2015 Community for a Windows Phone 8.1 project.
Things to be noticed:
Labels: unity
perl -pe 's/\r\n|\n|\r/\r\n/g' inputfile > outputfile # Convert to DOS
perl -pe 's/\r\n|\n|\r/\n/g' inputfile > outputfile # Convert to UNIX
From this post在使用 Unity 輸出 Windows Phone 專案的時候遇到幾個類似於下面的錯誤
Currently there will be errors like the following when building Windows Phone project in Unity.
method `System.Int32 System.String::Compare(System.String,System.String,System.Boolean)` doesn't exist in target framework.因為 Windows Phone 提供的 API 並不完整,遇到這種錯誤的時候解法有幾個
Labels: unity
Just met this problem today and found solution here
sudo apt-get install virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11
Labels: Notes, VirtualBox