★Yuki Yamashita
(2024年11月9日) <モンスターマネージャーのベーススクリプト> using System.Collections; using System.Collections.Generic; using UnityEng...
(2024年11月9日) <モンスターマネージャーのベーススクリプト> using System.Collections; using System.Collections.Generic; using UnityEng...
(2024年9月11日) <千堂のパンチが3回ヒットになる> ・Handを選択 ・Is Kinematicにチェックをいれる。 これでOK (2024年6月19日) <インターバルシーンからメインシーンに戻...
(2024年9月2日) <キラーに変身> (1) (2) (3) (2024年8月26日) <キラーの調整> ・BulletBillにBox Colliderを追加 ・Freeze Rotat...
(2024年8月26日) <砲弾を上方向に加速させる> using System.Collections; using System.Collections.Generic; using UnityEngine; pub...
<オンライン会議システム> https://meet.google.com/yzx-aimp-acz (2024年4月27日) <敵をジャンプ移動させる> using System.Collections; using ...
(2024年5月18日) <ShotShellIconの表示の修正> using System.Collections; using System.Collections.Generic; using UnityEngi...
(2024年5月15日) <ジョイスティック操作の修正> (1)設定の修正 (2)スクリプトの修正 using System.Collections; using System.Collections.Generic; ...
(2024年5月4日) <rayヒットを検知すると、マークのサイズを大きくする> using System.Collections; using System.Collections.Generic; using Uni...
(2024年5月11日) <Boss1のボディを緑色に変化させる> using System.Collections; using System.Collections.Generic; using UnityEngin...
(2024年4月10日) <修正> ・スケールチェンジに触れたら2倍になる。 ・2倍大きさで敵に触れたら、1倍に戻る。 ・3秒間は無敵 ・3秒後に無敵解除。その後、敵に触れたらゲームーバーになる。 *「ScaleChan...
(2024年4月6日) <購入できないBOTがあるの修正> (2024年2月17日) <rayがヒットしたポイントにボムを出現させる> ★部分の2箇所のコードを修正すればOK u...
(2024年2月24日) ・Unityを起動 ・下記のようなエラーが表示されたら「Ignore」をクリックしましょう。 <スクリプトの修正> ・「PlayerMovement」スクリプトを開く ・42行目の最後に「セミコ...
(2024年2月10日) <ビームの当たり判定が反応しない> ・Max Collision Shapes(=パーティクル衝突判定に使用される衝突形状の数)の数値が0になっているのが原因(この数値を上げればOK) (202...
(2024年1月13日) <円ホーミング> using System.Collections; using System.Collections.Generic; using UnityEngine; public cl...
(2024年1月8日) <サインの往復移動を制限する> using System.Collections; using System.Collections.Generic; using UnityEngine; pub...
<2024年1月6日> (スクリプト1) using System.Collections; using System.Collections.Generic; using UnityEngine; public cla...
(2024年1月10日) <追尾弾> (追尾弾用スクリプト) using System.Collections; using System.Collections.Generic; using UnityEngine; ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class EnemyShotShell : M...
(テトリスのホールド機能) 「以下は、Unityでテトリスのホールド機能を実装するためのC#のプログラムコードの例です。このコードは、テトリスのブロックをホールドするための機能を追加します。」 using UnityEn...
(2023年4月12日) <Coinを取得できない原因> ・コライダーが外れている。
(1) *ゲームクリアーのルールを決めて、それを実装してください。 (例) コインを◯◯枚集める。 敵の的を◯◯個破壊する。 制限時間何にゴールまでたどり着く。 などなど (2) *ステージを作り込んでください。 これま...
(復習) BallGameのテキスト「タイムアタックを作ろう」を参考にして、制限時間内にクリアーできなければゲームオーバーになる仕組みを作ってください。 *このセクションは、BallGameのテキストを見ながら進めましょ...
(的の作成) 新規に「Cube」を作成 名前を「Target」に変更 大きさは自由 好きな画像を付ける。 (的を破壊する) 新規にC#スクリプトを作成 名前を「DestroyTarget」に変更 下記のコードを書いてチェ...