Last active
November 30, 2023 13:55
-
-
Save triacontane/d731fdf167a4873446e101d4da64dcaf to your computer and use it in GitHub Desktop.
フォロワーの衝突判定を完全に無効化
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @target MZ | |
* @plugindesc フォロワーの衝突判定を完全に無効化 | |
* @author トリアコンタン MarkⅡ | |
* | |
* @help | |
* このプラグインは、フォロワーによる全ての衝突判定を無効にします。 | |
* Game_Followers.prototype.isSomeoneCollided メソッドをオーバーライドして、 | |
* 常に false を返すようにします。 | |
* | |
* このプラグインにはプラグインコマンドはありません。 | |
*/ | |
(function() { | |
// フォロワーの衝突判定を全て無効にする | |
Game_Followers.prototype.isSomeoneCollided = function(x, y) { | |
return false; | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
作成元
https://chat.openai.com/share/9e9efd82-2dd7-4f9d-bbcc-b149c38dc0bd