DevGameSu
close
프로필 배경
프로필 로고

DevGameSu

  • 분류 전체보기 (9)
    • Phaser (8)
  • 홈
  • 태그
  • 방명록

Twine으로 텍스트 게임 만들기 -1-

트와인 : https://twinery.org/ Twine / An open-source tool for telling interactive, nonlinear storiesEach of Twine's built-in story formats has an online guide: Chapbook Harlowe Snowman SugarCubetwinery.org트와인 쿡북 : https://twinery.org/cookbook/index.html Twine CookbookWelcome to the Twine Cookbook This Cookbook contains documentation, tips, and examples for using the non-linear story creation tool T..

  • format_list_bulleted 카테고리 없음
  • · 2025. 11. 19.
  • textsms
Web Game - 벌레 잡기 ~End.js~

Web Game - 벌레 잡기 ~End.js~

End.jsimport Phaser from 'phaser';export default class EndScene extends Phaser.Scene { constructor() { super({ key: 'End' }); } preload() { this.input.setDefaultCursor('auto'); } create() { const score = this.registry.get('score') || 0; const bugSpeed = this.registry.get('bugSpeed'); let level = ''; if (bugSpeed === 1500) { leve..

  • format_list_bulleted Phaser
  • · 2025. 4. 30.
  • textsms
Web Game - 벌레 잡기 ~main.js~

Web Game - 벌레 잡기 ~main.js~

main.jsimport Phaser from 'phaser';export default class MainScene extends Phaser.Scene { constructor() { super({ key: 'Main' }); } preload() { this.load.image('mouse', '../asset/image/mouse1.png'); this.load.image('bug', '../asset/image/bug.png'); this.load.image('ghosts', '../asset/image/ghosts.png'); } create() { this.score = 0; this.tim..

  • format_list_bulleted Phaser
  • · 2025. 4. 29.
  • textsms
Web Game - 벌레 잡기 ~diff.js~

Web Game - 벌레 잡기 ~diff.js~

diff.jsimport Phaser from 'phaser';export default class DiffScene extends Phaser.Scene { constructor() { super({ key: 'Diff' }) } create() { this.add.text(this.scale.width / 2, 100, 'Choose Difficulty Level', { fontSize: '48px', fill: '#fff' }).setOrigin(0.5); const level1 = this.add.text(this.scale.width / 2, 200, 'Level 1', { ..

  • format_list_bulleted Phaser
  • · 2025. 4. 28.
  • textsms
Web Game - 벌레 잡기 ~intro.js~

Web Game - 벌레 잡기 ~intro.js~

intro.jsimport Phaser from 'phaser';export default class IntroScene extends Phaser.Scene { constructor() { super({ key: 'Intro' }) } create() { this.add.text(this.game.scale.width / 2, 200, 'catching bugs', { fontFamily: 'Arial', fontSize: 80, color: '#87CEFA' }).setOrigin(0.5, 0.5) const textTap = this.add.text(this.g..

  • format_list_bulleted Phaser
  • · 2025. 4. 25.
  • textsms
Web Game - 벌레 잡기 ~index.js~

Web Game - 벌레 잡기 ~index.js~

index.jsimport Phaser from 'phaser'import IntroScene from './intro.js';import MainScene from './main.js'import EndScene from './End.js';import DiffScene from './diff.js';var game = new Phaser.Game({ type: Phaser.AUTO, parent: 'index', scale: { width: 800, height: 600, autoCenter: Phaser.Scale.Center.CENTER_BOTH }, scene: [ IntroScene, DiffScene, ..

  • format_list_bulleted Phaser
  • · 2025. 4. 23.
  • textsms
  • navigate_before
  • 1
  • 2
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (9)
    • Phaser (8)
최근 글
인기 글
최근 댓글
태그
  • #webpack
  • #페이저
  • #잡기
  • #Phaser
  • #bug
  • #scene
  • #게임
  • #웹
  • #game
  • #web
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바