codeman

Unity

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

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

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

ParticleControllerusing System.Collections;using System.Collections.Generic;using UnityEngine;public class ParticleContr...
Unity

Unity:Particle System覚え書き

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

入力フォームのバリデーション

index.html<!DOCTYPE html><html lang="ja"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content=...
JavaScript

JSDoc覚書

JSDocは、JavaScriptコードに記述したコメントからHTMLドキュメントを自動生成するツールです。利用条件:Node.jsがインストール済みであることJSDocのインストールコマンドプロンプト上でnpm install -g js...
Unity

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

コリジョン(OnCollisionEnter2D)とトリガー(OnTriggerEnter2D)CollisionTestusing System.Collections;using System.Collections.Generic;u...
参考

Chromeの機能拡張を作るときの覚書

機能拡張のファイル構成例としてchrome-extentionフォルダを作成し機能拡張に必要なファイルをその中に作る。フォルダ内にmanifect.jsonとhello.htmlを作成chrome-extention ├─manife...
JavaScript

JS:キャンバスに画像表示

事前に400x400ピクセルのimage.jpgを準備index.html<!DOCTYPE html><html lang="ja"><head> <meta charset="UTF-8"> <meta http-equiv...
JavaScript

Electronメニュー作成例

index.jsconst { app, BrowserWindow, Menu, dialog } = require('electron')function createWindow(){ const w = new BrowserWi...
Unity

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

Unity Editor画面全体GROUNDKUMAUSAGIAPPLEGameControlスクリプトMoveusing System.Collections;using System.Collections.Generic;using ...