Skip to content

Instantly share code, notes, and snippets.

@triacontane
Last active November 30, 2023 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save triacontane/d731fdf167a4873446e101d4da64dcaf to your computer and use it in GitHub Desktop.
Save triacontane/d731fdf167a4873446e101d4da64dcaf to your computer and use it in GitHub Desktop.
フォロワーの衝突判定を完全に無効化
/*:
* @target MZ
* @plugindesc フォロワーの衝突判定を完全に無効化
* @author トリアコンタン MarkⅡ
*
* @help
* このプラグインは、フォロワーによる全ての衝突判定を無効にします。
* Game_Followers.prototype.isSomeoneCollided メソッドをオーバーライドして、
* 常に false を返すようにします。
*
* このプラグインにはプラグインコマンドはありません。
*/
(function() {
// フォロワーの衝突判定を全て無効にする
Game_Followers.prototype.isSomeoneCollided = function(x, y) {
return false;
};
})();
@triacontane
Copy link
Author

triacontane commented Nov 30, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment