mmag

ハマったことメモなど

2023-01-01から1年間の記事一覧

初回プッシュ以外でもプルリクをつくるリンクを表示する

remote: Resolving deltas: 100% (7/7), completed with 7 local objects. remote: remote: Create a pull request for 'baz' on GitHub by visiting: remote: https://github.com/foo/bar/pull/new/baz remote: このリンク。そのブランチを初めてプッシュし…

細かくpackage.jsonでmainを指定しておくと便利

読んでなるほどと思ったのでメモ。言われてみれば確かにそう。 components └── Button ├── Button.module.css └── Button.tsx みたいな構造になっているときにButton.tsxをimportすると import Button from '~/components/Button/Button' と書かないといけな…

Phaser 3でコントローラーを使う

最近遊んでいたのでメモ。 PhaserにはScene Pluginという仕組みがあるようです。そこでthis.game.events.onでupdate前にコールバックを仕込めるので、そこでコントローラー入力周りのお世話をしています。 // main.ts import Phaser from 'phaser' import { …