본문 바로가기

분류 전체보기104

RPG Maker MV 도움말에 있는 Enigma Virtual Box를 분석해보자 RPG Maker MV로 게임을 만들 때, 도움말에서 가이드 한대로 Enigma Virtual Box를 사용하는 사람들이 있을 것이다. 마녀의 집의 경우, Enigma Virtual Box를 이용하지 않았다. 그 이유는 무엇일까? 사실 Enigma Virtual Box는 암호화 툴이 아니다. 단일 실행 파일을 만들어서 파일을 하나로 통합하여 깔끔하게 만들어주는 툴일 뿐이다. 엄밀히 말하면 단일 실행이 아니라 실행하는 데에는 모든 파일이 필요하며 이를 위해 파일을 어딘가에 슬쩍 풀어놓게 된다. Enigma Virtual Box로 만들어진 게임의 실행 파일을 헥스 에디터로 열어본 적이 있는가? 자세히 살펴보면 .enigma1이라는 이름을 가진 섹션이 존재한다. 해당 섹션에 접근하면 파일의 대한 정보가 쭉 나.. 2020. 2. 3.
RPG Maker MV에서 루비의 alias 모방 방식을 대체할 방법이 있을까? - 자바스크립트는 프로토타입 기반의 언어로 프로토타입 체인을 기반으로 상속을 흉내낸다. 핵심은 어떤 객체에서 특정 속성이나 함수를 찾을 때 상위 객체로 거슬러 올라가면서 탐색을 한다는 것이다. MV에서는 프로토타입에 연결된 함수의 링크를 바꾸는 방식으로 스크립트를 작성하게 된다. var alias_Window_Command_lineHeight = Window_Command.prototype.lineHeight; Window_Command.prototype.lineHeight = function() { return alias_Window_Command_lineHeight.call(this) - 18; }; ES6의 클래스는 루비나 C#처럼 분할 정의가 되지 않기 때문에 재정의가 불가능하고, 따라서 프로토타입에.. 2020. 2. 3.
Arabic Name Input - RPG Maker MV IntroductionThis plugin allows you to type the name in the Arabic. LinkGithub RAW - https://github.com/biud436/MV/raw/master/RS_ArabicNameEdit.js Version Log2020.01.31 (v1.0.0) - First Release. 2020.01.31 (v1.0.1) : - Reviewed the Arabic letters, by Koro San. 2020. 1. 31.
Refresh Manager - RPG Maker MV Refresh Manager (Plugin Enable/Disable)IntroductionThis plugin allows you to change the plugin configuration during the game. Video How to UseThis plugin allows you to change the plugin configuration during the game. You can change the configuration of a specific plugin that didn't use during the game without restarting the program. To change a plugin configuration scene, you need to call below .. 2020. 1. 13.
HUD Maker로 Map HUD 만들기 - RPG Maker MV HUD Maker는 인 게임 도중 화면 상에 텍스트나 게이지 등을 띄우고 드래그로 쉽게 조작할 수 있게 도와주는 에디터이며 RPG Maker MV에서 핵심 플러그인으로 부상하였다. HUD Maker를 사용하려면 SRD_SuperToolsEngine라는 플러그인이 우선적으로 필요하다. ​ HUD Maker는 슈퍼 툴 엔진의 추가 기능이기 때문에 플러그인을 다운로드 받은 후 플러그인 관리에서 설정할 때 우선적으로 설정하고 그 아래에 HUD Maker를 추가해야 한다. HUD Maker는 F12 버튼을 눌러 띄울 수 있고 처음에 나오는 메뉴에서 HUD Maker 버튼을 선택하면 된다. Menu Editor는 창을 이동하거나 투명도를 조절할 수 있는 에디터로 메뉴나 전투에서 상태 창을 없애거나 배틀 로그 창을 .. 2019. 11. 22.
Multiple HUD Battle Addon - RPG Maker MV IntroductionThis plugin allows you to draw multiple HUD during the battle.To use this add-on, You must have RS_HUD_4m 1.1.3, or later versions. This plugin is supported to draw the Active Time Battle gauge if you are using ATB plugins.If you are using plugins such as YEP_X_BattleSysATB or Ellye_ATB or VE - Active Time Battle or MPP_ActiveTimeBattle,You can display a new gauge. But if you were no.. 2019. 11. 19.
Simple AdMob - RPG Maker MV IntroductionThis plugin provides the way easily to display an advertisement in your cordova application for Android or iOS. Korean Translation - https://blog.naver.com/biud436/220779787549 How to setup 1. Create a cordova applicationIn case of using a cordova-cli, Before you start build your mobile application, you need to attempt as below. if your cordova version is to 7 or more, you can easily.. 2019. 11. 6.
Korean Name Input (JOHAB, 조합형) - RPG Maker MV 소개이전 방식의 플러그인에서는 보이지 않는 에디트 박스를 생성하고 조합된 한글을 긁어오는 방식을 사용하였습니다. 하지만 안드로이드 크로미움 웹뷰에서는 에디트 박스가 포커스 상태일 때, 키보드 레이아웃 화면이 뜸과 동시에 안드로이드의 상태바도 같이 표시됩니다. 입력이 끝나면 자동으로 상태바가 감춰져야 하지만, 화면에 보이지 않게 만든 에디트 박스의 경우, 가끔 상태바가 자동으로 사라지지 않는 버그가 있었습니다. 보이는 경우에는 상태바가 잘 사라지지만, 그렇지 않은 경우에는 가끔 버그가 생깁니다. 수 많은 기능보다는 안정적으로 돌아가는 게 중요하므로, 투명한 에디터 박스를 없애고 잘 돌아가게 만든 한글 라이브러리를 사용하여 내부에서 한글을 조합 방식으로 다시 만들었습니다. 그래서 예전과 같이 모바일에선 키보.. 2019. 11. 2.
Battle Static Animation - RPG Maker MV IntroductionThis plugin allows you to play the loop animation during the battle SetupThis plugin must require the specific plugins YEP_CoreEngine and YEP_BattleEngineCore plugins.You should place this plugin somewhere below 'YEP_CoreEngine' and 'YEP_BattleEngineCore' in the Plugin Manager. Usage This plugin must require YEP_CoreEngine and YEP_BattleEngineCore plugins. You should place this plugi.. 2019. 10. 11.
Keeping Focus - RPG Maker VX Ace Introduction This script allows you to perform the game frame update even if the RGSS Player didn't have focus or there has an another operation is in progress. System Requirements RPG Maker VX Ace v1.02a (Steam)In case of the RPG Maker VX v1.03a(Steam), You should have a file called 'RGSS202E.dll' to Root Game Directory.RPG Maker XP v1.05a (Steam) API This function checks the status whether the.. 2019. 9. 12.