Skip to content

Instantly share code, notes, and snippets.

View pota-gon's full-sized avatar

ポテトードラゴン pota-gon

View GitHub Profile
@pota-gon
pota-gon / MVtoAce.rb
Last active April 18, 2024 00:11
RGSS3: MVプロジェクトデータ変換
# MVプロジェクトデータ変換 Ver0.5.1
# 概要
=begin
MVのプロジェクトデータをVXAceのrvdata2形式に変換します。
=end
# ◆ スクリプト利用規約
@pota-gon
pota-gon / const.js
Created September 6, 2021 14:14
JavaScript の const を理解するためのコード
// sum += 10 は、自己代入なので
let sum = 0;
sum += 10;
// const は再代入禁止だから分かった。
const data = [];
data.push(10);
// Q. num は let じゃなくても動くのなぜ?
// A. For文はループごとに別スコープになるから
@pota-gon
pota-gon / AddAccessory.js
Created September 4, 2021 05:40
RPGツクールMVの装飾品を3つにする
/*:
* @plugindesc 装飾品を増やすプラグイン
* @author 自分のアカウント名
* @help 装飾品を増やすプラグインです。
* @url
*/
(() => {
'use strict';
const _Game_Actor_equipSlots = Game_Actor.prototype.equipSlots;
@pota-gon
pota-gon / AddAccessory.js
Created September 4, 2021 05:37
RPGツクールMVの装飾品を2つにする
/*:
* @plugindesc 装飾品を増やすプラグイン
* @author 自分のアカウント名
* @help 装飾品を増やすプラグインです。
* @url
*/
(() => {
'use strict';
const _Game_Actor_equipSlots = Game_Actor.prototype.equipSlots;