let icon = { default_block : "default_block.png", default_block_selected : "default_block_selected.png", default_block_highlight : "default_block_highlight.png", control_block : "control_block.png", control_block_selected : "control_block_selected.png", }; let mainPaletteData = new Array(); ///projectSeq1 씨앗을 심어용 mainPaletteData.push([ { // action : `water`, action : 0, key : 1, month : 3, angle: 0, ports: [ { id: "M6", spot: "0.5 0.15 0 0.5" }, { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.default_block}`, block_src_default : `${img_url}${icon.default_block}`, block_src_selected : `${img_url}${icon.default_block_selected}`, icon_src : `${img_url}icon1.png`, }, { // action : `growUp`, action : 1, key : 2, month : 3, angle: 0, ports: [ { id: "M6", spot: "0.5 0.15 0 0.5" }, { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.default_block}`, block_src_default : `${img_url}${icon.default_block}`, block_src_selected : `${img_url}${icon.default_block_selected}`, icon_src : `${img_url}icon2.png`, }, { // action : `flowering`, action : 2, key : 3, month : 3, angle: 0, ports: [ { id: "M6", spot: "0.5 0.15 0 0.5" }, { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.default_block}`, block_src_default : `${img_url}${icon.default_block}`, block_src_selected : `${img_url}${icon.default_block_selected}`, icon_src : `${img_url}icon3.png`, }, ]); ///projectSeq2 나비를 날려용 mainPaletteData.push([ { // action : `move left`, action : 0, key : 1, month : 4, angle: 0, ports: [ { id: "M6", spot: "0.5 0.15 0 0.5" }, { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.default_block}`, block_src_default : `${img_url}${icon.default_block}`, block_src_selected : `${img_url}${icon.default_block_selected}`, icon_src : `${img_url}icon2_1.png`, }, { // action : `down`, action : 1, key : 2, month : 4, angle: 0, ports: [ { id: "M6", spot: "0.5 0.15 0 0.5" }, { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.default_block}`, block_src_default : `${img_url}${icon.default_block}`, block_src_selected : `${img_url}${icon.default_block_selected}`, icon_src : `${img_url}icon2_2.png`, }, { // action : `flowering`, action : 2, key : 3, month : 4, angle: 0, ports: [ { id: "M6", spot: "0.5 0.15 0 0.5" }, { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.default_block}`, block_src_default : `${img_url}${icon.default_block}`, block_src_selected : `${img_url}${icon.default_block_selected}`, icon_src : `${img_url}icon2_3.png`, }, ]); let startPaletteData = [ { action : `start`, key : 1, month : 3, angle: 0, ports: [ { id: "F2", spot: "0.5 1 0 -0.5" } ], block_src : `${img_url}${icon.control_block}`, block_src_default : `${img_url}${icon.control_block}`, block_src_selected : `${img_url}${icon.control_block_selected}`, block_src_highlight : `${img_url}${icon.default_block_highlight}`, icon_src : `${img_url}icon_start.png`, icon_pos : new go.Point(30, 30), }, ];