2013-12-01から1ヶ月間の記事一覧
iOS Simulator failed to install the application.のエラーが出た。 画面はこれ。 URL: http://d.hatena.ne.jp/shu223/20130905/1379359877「iOS Simulator」を起動した時の左上のメニュー →「Reset Content And Setting」を選択。 それでも解決しない!更…
githubはこちらにある。 URL: https://github.com/mogya/tm_twitter_api Ti.include("lib/twitter_api.js"); とサンプルでは書いているので、保存先は assets/lib/twitter_api.jsとなるはず。よって、 libディレクトリを作成して。 command+Iでプロパティを…
iOSだけStreamingAssetにアクセス出来ない。Androidはできる。http://docs.unity3d.com/Documentation/ScriptReference/Application-persistentDataPath.htmlStreamingAssetかr,あpersistentDataPathに転送させて後から使えるようにする。
An asset is marked as dont save, but is included in the build: UnityEditor.HostView:OnGUI()Building - Failed to write file: 0000000000000000d000000000000000 UnityEditor.HostView:OnGUI()Error building Player: Couldn't build player because o…
http://www.holoville.com/hotween/hotweenAPI/class_holoville_1_1_h_o_tween_1_1_h_o_tween.html Shake (object p_target, float p_duration, string p_propName, object p_fromVal, float p_shakeAmplitude=0.1f, float p_shakePeriod=0.12f)みたいな引数…
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/up.png, skippingみたいなのが大量に出て怖い。URL: http://d.hatena.ne.jp/january/20130727/1374897775 文書のパースなので、放置しておいても大丈夫かも?
URL: http://qiita.com/sinapps/items/34a9685e322fb77046c2rbenv initコマンドで行けるらしいが、 # Load rbenv automatically by adding # the following to ~/.zshrc: eval "$(rbenv init -)"と表示された。しかし、 > ruby -v ruby 1.8.7 (2012-02-08 pa…
URL: http://programming-ios.com/xcode-copypngfile-error/ Build Phases → Copy Bundle Resourcesから赤いのを削除
ld: library not found for -lPods clang: error: linker command failed with exit code 1 (use -v to see invocation) Library not found for -lPodshttp://d.hatena.ne.jp/samril/20130910/1378890218 http://qiita.com/katryo/items/af62cd47276829dd30b0…
[!] [BlocksKit (1.8.2)] The `documentation` DSL directive of the podspec format has been deprecated. [!] [SDWebImage (3.2)] `preferred_dependency` has been renamed to `default_subspec`. [!] [SDWebImage (3.2)] `preferred_dependency` has bee…
URL: http://hiiro-game.seesaa.net/article/279869280.html こちらのブログにあるコードを改善したもの。 foreach ( var touch in Input.touches ) { if ((touch.phase == TouchPhase.Began) && (touch.tapCount > 1)) { } } しかし、これはAndroidやEditor…
URL: http://qiita.com/advent-calendar/2013/unityAIかランキング機能をやろうと思いました。 しかし、AIはすぐに書けないので、需要ありそうなランキング機能にしますね。 Mac OS X前提です(^^)参考ネタURL: Unifyの記事 http://wiki.unity3d.com/index.ph…
myUISpriteというUISpriteへ、hogeのUISpriteであるotherUISpriteをコピーしたい myUISprite = hoge.otherUISprite; だとダメ。 myUISprite.atlas = hoge.otherUISprite.atlas; myUISprite.spriteName = hoge.otherUISprite.spriteName; と行う!しかしさす…
公式? http://googleadsdeveloper.blogspot.jp/2013/07/admob-plugin-for-unity3d.html
https://github.com/playgameservices/play-games-plugin-for-unity
Titanium Studio, build: 3.1.3.201309132423 (c) Copyright 2012-2013 by Appcelerator, Inc. All rights reserved. Build: jenkins-titanium-rcp-master-21 (origin/master) Date: 13 September 2013, 00:23:57を使ってるが、そのエラーが出る。URL: http:…
・インストール brew install redis・起動 redis-server /usr/local/etc/redis.conf ■MongoDB Universityの解説 その4最近MongoDB University(https://education.mongodb.com/)の解説Quiz: Blog in Relational TablesQ. let’s assume that our blog can be…
print(hashlib.md5(b"Nobody inspects").digest()) これはbというbyteリテラルだが リテラルを使うと変数の時に困る print(hashlib.md5(bytes("Nobody inspects", "utf-8")).digest()) これなら "Nobody inspects"がたとえ変数でもできる。
URL: http://bbs.kakaku.com/bbs/K0000431816/SortID=16321636/ ・3G通信は無料。 ・メリットは、Wi-Fi通信しなくても、3G通信で Amazon (Kindleストア含む) と Wikipedia にアクセスできること。 ※AmazonとWikipedia以外に接続できない。【結論:3Gのメリッ…
最近MongoDB University(https://education.mongodb.com/)の解説Quiz: JSON SubdocumentsQ. Write a JSON document with a single key, "address" that has as it value another document with the keys “street_address”, “city”, “state”, “zipcode”, wi…
・Webデザイナー検定(CG-ARTS協会) http://www.cgarts.or.jp/kentei/about/web/・Webクリエイター能力認定試験(サーティファイ) http://www.sikaku.gr.jp/web/wc/・ウェブデザイン技能検定(NSPC) http://www.webdesign.gr.jp/
最近MongoDB University(https://education.mongodb.com/)の解説Quiz: JSON RevisitedQ. Write the JSON for a simple document containing a single key "fruit" that has as its value an array containing three strings: "apple", "pear", and "peach"…
最近MongoDB University(https://education.mongodb.com/)を始めた。 修了すれば資格がもらえる!M101P: MongoDB for Developers Quiz: What is MongoDB?Q. Which of the following statements are true about MongoDB? 【MongoDBにおいて以下に述べるもの…