PhotoshopToSpine 스크립트에서 생성된 값을 5픽셀만큼 오프셋하는 원하는 효과를 얻으려면 다음 단계를 수행하십시오.
1.) 아직 다운로드하지 않았다면 여기 Github 페이지에서 PhotoshoptoSpine 스크립트의 최신 버전을 다운로드하십시오.
https://github.com/EsotericSoftware/spine-scripts/tree/master/photoshop
2.) 텍스트 또는 코드 편집기에서 PhotoshopToSpine.jsx 스크립트를 엽니다. 저는 Visual Studio Code를 사용했지만 Notepad, Notepad++, Sublime Text 등을 사용할 수 있습니다.
3.) 다음 코드가 포함된 51행을 찾습니다.
var xOffSet = RulerOrigin("H"), yOffSet = RulerOrigin("V");
4.) 51행을 다음과 같이 수정합니다.
var xOffSet = (rulerOrigin("H") - 5), yOffSet = (rulerOrigin("V") - 5);
5.) PhotoshopToSpine.jsx 스크립트를 저장하고 닫습니다.
6.) Photoshop의 파일 > 스크립트 메뉴에서 수정된 PhotoshopToSpine.jsx를 실행하고 출력되는 JSON을 다시 확인합니다.
이제 JSON이 예상한 출력과 일치해야 합니다.
To achieve your intended effect of offsetting the values produced by the PhotoshopToSpine script by 5 pixels, please perform the following steps:
1.) If you have not done so, download the latest version of our PhotoshoptoSpine script from our Github page here:
https://github.com/EsotericSoftware/spine-scripts/tree/master/photoshop
2.) Open the PhotoshopToSpine.jsx script in a text or code editor. I used Visual Studio Code, but you can use Notepad, Notepad++, Sublime Text, etc.
3.) Look for line 51, that contains the following code:
var xOffSet = rulerOrigin("H"), yOffSet = rulerOrigin("V");
4.) Modify line 51 to read like the following:
var xOffSet = (rulerOrigin("H") - 5), yOffSet = (rulerOrigin("V") - 5);
5.) Save and close the PhotoshopToSpine.jsx script.
6.) Run your modified PhotoshopToSpine.jsx from Photoshop's File > Scripts menu, and double-check the JSON that is output.
The JSON should now be consistent with the output you were expecting.