f.Frame.popUp().setSectors()

f.Frame.popUp().setSectors(sectors)

개요

f.Frame.popUp().setSectors()를 통해 팝업 시나리오에 섹터를 할당해줄 수 있습니다.

f.Frame은 이벤트 스크립트에서 사용할 수 있으며 디버거에서는 동작하지 않습니다.

파라미터

예시

// 팝업을 열기 전 sector를 연결해줍니다.
let scenarioID =_collections.activeSector.scenarioid;
let stepID = _collections.activeSector.stepid;
let sectors = _collections.activeSector.sectors;
let pop = f.Frame.popUp(scenarioID,stepID);
pop.setSectors(sectors);
pop.show();

Last updated