main_ex.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. *主线程扩展
  3. *对话框功能扩展
  4. */
  5. 'use strict';
  6. var path = require('path');
  7. var fs = require('fs');
  8. var md5 = require('md5');
  9. module.exports = {
  10. // 初始化
  11. onLoad(parent)
  12. {
  13. // 主线程对象: main.js
  14. this.parent = parent;
  15. },
  16. // 窗口销毁
  17. onDestroy()
  18. {
  19. },
  20. /************* 事件 *************/
  21. messages:
  22. {
  23. 'addNodeComp'(){
  24. Editor.Panel.open('simple-code');
  25. Editor.Ipc.sendToPanel('simple-code', 'addNodeComp');
  26. },
  27. 'addPrefab'(){
  28. Editor.Panel.open('simple-code');
  29. Editor.Ipc.sendToPanel('simple-code', 'addPrefab');
  30. },
  31. 'openProjectDir'(event){
  32. Editor.Panel.open('simple-code');
  33. Editor.Ipc.sendToPanel('simple-code', 'openProject',"dir");
  34. },
  35. 'openProjectEditor'(event){
  36. Editor.Panel.open('simple-code');
  37. Editor.Ipc.sendToPanel('simple-code', 'openProject',"editor");
  38. },
  39. 'openProjectCreator'(event){
  40. Editor.Panel.open('simple-code');
  41. Editor.Ipc.sendToPanel('simple-code', 'openProject',"creator");
  42. },
  43. 'scene:saved'(){
  44. // Editor.log("to save")
  45. }
  46. }
  47. };