1234567891011121314151617181920212223 |
- mergeInto(LibraryManager.library, {
- CreateIFrame: function ()
- {
- window.location.href = 'https://fangzhen.cocorobo.cn/blockly';
- },
- gotoUnity: function (type)
- {
- window.location.href = 'https://fangzhen.cocorobo.cn/unity?type='+type;
- },
- SayHello: function(){
- window.alert("hello,world!")
- },
- ReportReady: function(){
- window.ReportReady();
- },
- noActive: function(type){
- window.noActive(type);
- },
- noCamera: function(str){
- window.noCamera(Pointer_stringify(str));
- },
- });
|