Unity

Unity

保護中: Unity:Photon2を使ったオープンワールド制作

このコンテンツはパスワードで保護されています。閲覧するには以下にパスワードを入力してください。 パスワード:
Unity

Unity:シーンにランダムにプレハブを出現させる

ParticleController using System.Collections; using System.Collections.Generic; using UnityEngine; public class ParticleC...
Unity

Unity:Particle System覚え書き

UnityのParticle Systemを使って、星が飛び散るエフェクトを作ってみます。 Hierarchy > Effect > Particle System をシーンに配置 Particle Systemの設定 Duration終わ...
Unity

Unity:当たり判定スクリプト

コリジョン(OnCollisionEnter2D)とトリガー(OnTriggerEnter2D) CollisionTest using System.Collections; using System.Collections.Generi...
Unity

Unity:Rigidbody 2Dを利用した簡単なゲームのヒント

Unity Editor画面 全体 GROUND KUMA USAGI APPLE GameControl スクリプト Move using System.Collections; using System.Collections.Gene...
Unity

Unity:キーボードで移動させる

Move using System.Collections; using System.Collections.Generic; using UnityEngine; public class Move : MonoBehaviour { ...
Unity

Unity:上に移動するスクリプト

MoveUp using System.Collections; using System.Collections.Generic; using UnityEngine; public class BugMove : MonoBehavio...
Unity

Unity2D:プレハブをマウス位置に生成するスクリプト

CreateBlock using System.Collections; using System.Collections.Generic; using UnityEngine; public class CreateBlock : Mo...
Unity

GameControl.csの元スクリプト

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.S...
Unity

Unity:背景をスクロールさせる

背景を下にスクロールさせるイメージです。 背景のイメージ画像 720 x 1280ピクセルの縦長画像で作成してください。PNG形式で保存。 シーンへのスプライト画像配置 シーンに同じ画像を2つ縦に配置します。スプライト画像の Order i...