Unity

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

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

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

ParticleControllerusingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassParticleController...
Unity

Unity:Particle System覚え書き

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

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

index.html<!DOCTYPEhtml><htmllang="ja"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><me...
JavaScript

JSDoc覚書

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

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

コリジョン(OnCollisionEnter2D)とトリガー(OnTriggerEnter2D)CollisionTestusingSystem.Collections;usingSystem.Collections.Generic;usi...
参考

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

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

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

事前に400x400ピクセルのimage.jpgを準備index.html<!DOCTYPEhtml><htmllang="ja"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compa...
JavaScript

Electronメニュー作成例

index.jsconst{app,BrowserWindow,Menu,dialog}=require('electron')functioncreateWindow(){constw=newBrowserWindow({width:32...
Unity

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

UnityEditor画面全体GROUNDKUMAUSAGIAPPLEGameControlスクリプトMoveusingSystem.Collections;usingSystem.Collections.Generic;usingUnit...