發表文章

目前顯示的是 6月, 2016的文章

Latest

英文、中文 / 諺語、片語、成語、口語對照 (2025.08.25 更新)

做表面功夫 go through the motion 目中無人;自視甚高 have one's nose in the air 有完沒完;別再說了 give it a rest  = can in 兵來將擋,水來土掩 roll with the punches (衍伸至拳擊) = take it as it comes 時間過得好慢。 The day is dragging on. 少臭美了 be full of oneself = Get over yourself! 你真是自以為是。 You are really all about yourself. 你一定找得到的。 You can't miss it. 那還用說。 You're telling me. 物超所值 get more bang for the buck 加把勁 pull one's socks up 出洋相;大吵大鬧 make a scene 風馬牛不相及 be neither here nor there 挖東牆補西牆 rob Peter to pay Paul 我覺得事有蹊蹺。 I smell a rat.  冤冤相報何時了。 Two wrongs don't make a right. 沒魚,蝦也好。 It's not so great, but it'll have to do.  自斷後路 burn one's bridge  這是掛保證的。 You can take it to the bank.  = You can quote me on that. 白手起家 rags-to-riches 放規矩點! Behave youself. = Mind your p's and q's. 悉聽尊便。 Anything you say. = It's up to you. = As you wish. 夠了!(住嘴) Cut it out! = Stop it! 閉嘴! Hold your tongue. = Shut up! 別太挑剔了! Don't be so fussy. 別搞砸了! Don't blow it. 別老叫我做東做西! Don't boss me arou...

完成主角idle狀態的呼吸動作

圖片
完成主角idle狀態的呼吸動作之外~ 還練習畫了下面這個星月斬~ 不得不說LF2的Sprite讓我學到了不少!

完成主角的走路Sprite

圖片
今天用PS畫完了主角的走路Sprite 因為是要做2.5D的遊戲~ 所以有"前,後,左,右,左後,左前,右後,右前"八個方向... 目前要來做的是特效部分,但我得先研究研究~~~

重返MI

學期告一段落~ 我終於可以繼續做MI了!! 目前依舊在畫人物的Sprite~

【Unity】在Unity使用Android Studio

坤哥課的APP期末作業我打算交出一個遊戲~ 做遊戲我目前都是用Unity來完成~ 只不過坤哥限定要用到Android Studio中的Java語法... 所以我得把Android Studio與Unity做結合~ 然後~上網找到了中文教學: Android @ 岳 程式與鍵盤間的故事 :: 痞客邦 ::

Android 之 ImageView更改圖片

今天坤哥出了一道練習題: 依據輸入的數字並點下按鈕~ 圖片則顯示成相對應的骰子點數~ 而我上網找到一個方法~ //圖片路徑和名稱 String uri = "@drawable/" + "dice" + editText.getText().toString(); //取得圖片Resource位置 int imageResource = getResources().getIdentifier(uri, null, getPackageName()); //更改圖片 imageView.setImageResource(imageResource); 參考: [android範例] 按下按鈕換圖 (getResources().getIdentifier待研究)