Skip to content

Commit

Permalink
re commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kimorkim committed Apr 12, 2016
1 parent 3e7dfce commit b8103ee
Show file tree
Hide file tree
Showing 4,739 changed files with 7,647 additions and 90 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ d3dcompiler_47.dll
credits.html
build/Entry_1.0.0_Setup.exe
build/엔트리_1.0.1_Setup.exe
build/*.exe
2 changes: 0 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@
"sound_lib"
],
"dependencies": {
"entry-offline-editor-win32" : "https://github.com/entrylabs/entry-offline/releases/download/v1.0.0/Entry_1.0.0_Setup.exe",
"entry-offline-editor-osx64" : "https://github.com/entrylabs/entry-offline/releases/download/v1.0.0/Entry_1.0.0_64.dmg"
}
}
2 changes: 1 addition & 1 deletion build/entry.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
Name "엔트리"

; The file to write
OutFile "Entry_1.0.6_Setup.exe"
OutFile "Entry_1.0.7_Setup.exe"

; The default installation directory
InstallDir "C:\Entry"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
24 changes: 24 additions & 0 deletions entry/controllers/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,27 @@ common.filter('text', function() {
}
}
});


common.filter('nameTranslate', function() {
return function(str, type) {
var dict = SpriteNames;
if (type == 'picture')
dict = PictureNames;
else if (type == 'sound')
dict = SoundNames;

var lang = localStorage.getItem('lang') || 'ko';
if (window.lang)
lang = window.lang;

if (window.user && window.user.language)
lang = window.user.language;

if (!dict || lang == 'ko' || lang == 'code') {
return str;
} else {
return dict[str] ? dict[str] : str;
}
}
});
717 changes: 717 additions & 0 deletions entry/controllers/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion entry/controllers/native_controll.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if(options.debug) {
var _real_path = '.';
var _real_path_with_protocol = '';

console.log = function () {};
// console.log = function () {};
console.fslog = function (text) {
// var data = fs.readFileSync(_real_path + '/debug.log', 'utf8');
// data += '\n\r' + new Date() + ' : ' + text;
Expand Down
31 changes: 27 additions & 4 deletions entry/controllers/picture.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ angular.module('common').controller('PictureController',
$scope.menu = "";

$scope.searchWord = '';
$scope.language = localStorage.getItem('lang') || 'ko';

// 현재 선택한 탭
$scope.currentTab = 'system'; //for modal(sprite,upload,paint,character,text,etc)
Expand Down Expand Up @@ -113,11 +114,32 @@ angular.module('common').controller('PictureController',
};

var filterPictureData = function (keyword, cb) {
var filtered_data = $scope.orgPictureData.filter(function (item) {
return Object.keys(keyword).every(function (key) {
return item[key].indexOf(keyword[key]) >= 0;
var filtered_data = [];
if($scope.language === 'ko') {
filtered_data = $scope.orgPictureData.filter(function (item) {
return Object.keys(keyword).every(function (key) {
return item[key].indexOf(keyword[key]) >= 0;
});
});
} else {
var engData = [];
Object.keys(PictureNames).forEach(function (key) {
Object.keys(keyword).forEach(function (key2) {
if(PictureNames[key].indexOf(keyword[key2]) >= 0) {
engData.push(key);
}

});
});
});

$scope.orgPictureData.forEach(function (item) {
engData.forEach(function (key) {
if(item.name === key) {
filtered_data.push(item);
}
});
});
}

if($.isFunction(cb)) {
cb(filtered_data);
Expand All @@ -143,6 +165,7 @@ angular.module('common').controller('PictureController',
break;
}
}

$scope.systemPictures.push(picture);
}
$scope.collapse(0);
Expand Down
4 changes: 2 additions & 2 deletions entry/controllers/workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ angular.module('workspace').controller("WorkspaceController",
$scope.setOfflineHW = function() {
$('#entryCategoryarduino').mouseup(function() {
Entry.HW.prototype.downloadConnector = function() {
$('#saveArduinoPlugin').attr('nwsaveas', 'Entry_HW_v1.1.3.exe').trigger('click');
$('#saveArduinoPlugin').attr('nwsaveas', 'Entry_HW_v1.1.4.exe').trigger('click');
$("#saveArduinoPlugin").on("change", function () {
var filePath = $('#saveArduinoPlugin').val();
if (filePath !== "") {
var fs = require("fs");
fs.readFile("./hardware/plugin/Entry_HW_v1.1.3.exe", function (err, stream) {
fs.readFile("./hardware/plugin/Entry_HW_v1.1.4.exe", function (err, stream) {
fs.writeFile(filePath, stream, 'utf8', function (err) {
if (err)
alert("Unable to save file");
Expand Down
3,252 changes: 3,252 additions & 0 deletions entry/controllers/ws.js

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions entry/entry_offline.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@
<title>
엔트리
</title>

<!--
<link rel='stylesheet' href='./bower_components/entryjs/dist/entry.css' />
<link rel='stylesheet' href='./bower_components/bootstrap/dist/css/bootstrap.min.css' />
<link rel='stylesheet' href='./css/nanumbarungothic.css' />
<link rel='stylesheet' href='./css/header.css' />
<link rel='stylesheet' href='./css/workspace_header.css' />
<link rel='stylesheet' href='./css/workspace.css' />
<link rel='stylesheet' href='./css/modal.css' />
<link rel='stylesheet' href='./bower_components/bootstrap/dist/css/bootstrap.css' />
-->
<link rel='stylesheet' href='./css/developer.css' />
<script type="text/javascript" src="./controllers/main.js"></script>
<script type="text/javascript" src="./controllers/ws.js"></script>
<script type='text/javascript' src='./bower_components/jquery/dist/jquery.min.js'></script>
<script type='text/javascript' src='./bower_components/jquery-ui/jquery-ui.min.js'></script>
<script type='text/javascript' src='./bower_components/angular/angular.min.js'></script>
Expand All @@ -30,16 +35,19 @@
<script type='text/javascript' src='./bower_components/SoundJS/lib/soundjs-0.6.0.combined.js'></script>
<script type='text/javascript' src='./bower_components/SoundJS/lib/flashaudioplugin-0.6.0.combined.js'></script>
<script type='text/javascript' src='./bower_components/webfontloader/webfontloader.js'></script>
<script type='text/javascript' src='./controllers/app.js'></script>
<script type='text/javascript' src='./bower_components/entryjs/extern/blockly/blockly_compressed.js'></script>
<script type='text/javascript' src='./bower_components/entryjs/extern/util/static.js'></script>
<script type='text/javascript' src='./bower_components/entryjs/extern/util/CanvasInput.js'></script>
<script type='text/javascript' src='./bower_components/entryjs/extern/util/handle.js'></script>
<script type='text/javascript' src='./bower_components/entryjs/extern/util/ndgmr.Collision.js'></script>
<script type='text/javascript' src='./bower_components/entryjs/dist/entry.js'></script>

<script type='text/javascript' src='./controllers/app.js'></script>
<script type='text/javascript' src='./controllers/context.js'></script>
<script type="text/javascript" src="./controllers/filters.js"></script>
<script type="text/javascript" src="./lang/pictures.js"></script>
<script type="text/javascript" src="./lang/sounds.js"></script>
<script type="text/javascript" src="./lang/sprites.js"></script>
<script type="text/javascript" src="./controllers/native_menu.js"></script>
<script type="text/javascript" src="./controllers/native_controll.js"></script>
<script type="text/javascript" src="./controllers/directives.js"></script>
Expand Down
Binary file not shown.
Binary file added entry/img/assets/(na)pausebutton_edit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/(na)scene_add.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/1(c).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/1(o).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/2(c).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/2(o).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/3(c).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/3(o).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/4(c).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/4(o).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/ALL.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/Thumbs.db
Binary file not shown.
Binary file added entry/img/assets/about/about_entry/back_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/back_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/back_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/cloud_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/cloud_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/cloud_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/cloud_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/cloud_5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/icon_band.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added entry/img/assets/about/about_entry/icon_facebook.png
Binary file added entry/img/assets/about/about_entry/icon_twitter.png
Binary file added entry/img/assets/about/about_entry/image_1.png
Binary file added entry/img/assets/about/about_entry/image_2.png
Binary file added entry/img/assets/about/about_entry/image_3.png
Binary file added entry/img/assets/about/about_entry/image_4.png
Binary file added entry/img/assets/about/about_entry/image_5.png
Binary file added entry/img/assets/about/about_entry/main_image.png
Binary file added entry/img/assets/about/about_entry/ribbon.png
Binary file added entry/img/assets/about/about_entry/ribbon_txt.png
Binary file added entry/img/assets/about/about_entry/textbox_end.png
Binary file added entry/img/assets/about/about_entry/textbox_front.png
Binary file added entry/img/assets/about/about_entry/together.png
Binary file added entry/img/assets/about/about_entry/txt_1_t.png
Binary file added entry/img/assets/about/about_entry/txt_1_t_en.png
Binary file added entry/img/assets/about/about_entry/txt_2_t.png
Binary file added entry/img/assets/about/about_entry/txt_2_t_en.png
Binary file added entry/img/assets/about/about_entry/txt_3_t.png
Binary file added entry/img/assets/about/about_entry/txt_3_t_en.png
Binary file added entry/img/assets/about/about_entry/txt_4_s_n.png
Binary file added entry/img/assets/about/about_entry/txt_6_s_n.png
Binary file added entry/img/assets/ajax-loader.gif
Binary file added entry/img/assets/all_cloud.png
Binary file added entry/img/assets/arduino_ebs.png
Binary file added entry/img/assets/arrow_down.png
Binary file added entry/img/assets/arrow_right.png
Binary file added entry/img/assets/art/addClass.png
Binary file added entry/img/assets/art/arrow_off.png
Binary file added entry/img/assets/art/arrow_on.png
Binary file added entry/img/assets/art/art_blog_bg.png
Binary file added entry/img/assets/art/art_project_open.png
Binary file added entry/img/assets/art/art_project_openen.png
Binary file added entry/img/assets/art/art_view_add_button.png
Binary file added entry/img/assets/art/art_view_add_button_en.png
Binary file added entry/img/assets/art/blog-gradient.png
Binary file added entry/img/assets/art/blog-management.png
Binary file added entry/img/assets/art/blog_basic_1.png
Binary file added entry/img/assets/art/blog_basic_2.png
Binary file added entry/img/assets/art/blog_basic_3.png
Binary file added entry/img/assets/art/bus_with_tree.png
Binary file added entry/img/assets/art/category_off.png
Binary file added entry/img/assets/art/category_on.png
Binary file added entry/img/assets/art/category_on_1.png
Binary file added entry/img/assets/art/check_off.png
Binary file added entry/img/assets/art/check_on.png
Binary file added entry/img/assets/art/class.png
Binary file added entry/img/assets/art/close_project_btn.png
Binary file added entry/img/assets/art/create_project_e.png
Binary file added entry/img/assets/art/deletion_icon.png
Binary file added entry/img/assets/art/drop_arrow.png
Binary file added entry/img/assets/art/edit_icon.png
Binary file added entry/img/assets/art/emptyGroup.png
Binary file added entry/img/assets/art/favorit_project.png
Binary file added entry/img/assets/art/favorites_btn_off.png
Binary file added entry/img/assets/art/favorites_btn_on.png
Binary file added entry/img/assets/art/grade_icon.png
Binary file added entry/img/assets/art/grid.png
Binary file added entry/img/assets/art/group/add.png
Binary file added entry/img/assets/art/group/add_people.png
Binary file added entry/img/assets/art/group/add_project.png
Binary file added entry/img/assets/art/group/back_1.png
Binary file added entry/img/assets/art/group/curriculum.png
Binary file added entry/img/assets/art/group/curriculumBG.png
Binary file added entry/img/assets/art/group/curriculum_hover.png
Binary file added entry/img/assets/art/group/curriculum_small.png
Binary file added entry/img/assets/art/group/default.png
Binary file added entry/img/assets/art/group/discuss.png
Binary file added entry/img/assets/art/group/discussBG.png
Binary file added entry/img/assets/art/group/discuss_hover.png
Binary file added entry/img/assets/art/group/discuss_small.png
Binary file added entry/img/assets/art/group/dot.png
Binary file added entry/img/assets/art/group/download.png
Binary file added entry/img/assets/art/group/exhibit.png
Binary file added entry/img/assets/art/group/exhibitBG.png
Binary file added entry/img/assets/art/group/exhibit_hover.png
Binary file added entry/img/assets/art/group/exhibit_small.png
Binary file added entry/img/assets/art/group/exit.png
Binary file added entry/img/assets/art/group/go.png
Binary file added entry/img/assets/art/group/goBG.png
Binary file added entry/img/assets/art/group/go_hover.png
Binary file added entry/img/assets/art/group/header_bus.png
Binary file added entry/img/assets/art/group/header_school.png
Binary file added entry/img/assets/art/group/header_tree.png
Binary file added entry/img/assets/art/group/icon_level.png
Binary file added entry/img/assets/art/group/icon_student.png
Binary file added entry/img/assets/art/group/important.png
Binary file added entry/img/assets/art/group/make_class.png
Binary file added entry/img/assets/art/group/manage.png
Binary file added entry/img/assets/art/group/manage_icon.png
Binary file added entry/img/assets/art/group/no_class.png
Binary file added entry/img/assets/art/group/search.png
Binary file added entry/img/assets/art/group/tab.png
Binary file added entry/img/assets/art/group/txtbox_b_close.png
Binary file added entry/img/assets/art/group/txtbox_b_open.png
Binary file added entry/img/assets/art/group/txtbox_y_close.png
Binary file added entry/img/assets/art/group/txtbox_y_open.png
Binary file added entry/img/assets/art/group_thumbnail.png
Binary file added entry/img/assets/art/highlight_project.png
Binary file added entry/img/assets/art/hw_1_off.png
Binary file added entry/img/assets/art/hw_1_on.png
Binary file added entry/img/assets/art/hw_2_off.png
Binary file added entry/img/assets/art/hw_3_off.png
Binary file added entry/img/assets/art/hw_3_on.png
Binary file added entry/img/assets/art/hw_blue.png
Binary file added entry/img/assets/art/hw_green.png
Binary file added entry/img/assets/art/hw_purple.png
Binary file added entry/img/assets/art/hw_red.png
Binary file added entry/img/assets/art/hw_yellow.png
Binary file added entry/img/assets/art/icon_best_of_week.png
Binary file added entry/img/assets/art/icon_blog.png
Binary file added entry/img/assets/art/icon_comment.png
Binary file added entry/img/assets/art/icon_facebook.png
Binary file added entry/img/assets/art/icon_facebook_1.png
Binary file added entry/img/assets/art/icon_love_L.png
Binary file added entry/img/assets/art/icon_love_m.png
Binary file added entry/img/assets/art/icon_next_off.png
Binary file added entry/img/assets/art/icon_next_on.png
Binary file added entry/img/assets/art/icon_prev_off.png
Binary file added entry/img/assets/art/icon_prev_on.png
Binary file added entry/img/assets/art/icon_staff_pick.png
Binary file added entry/img/assets/art/icon_twitter.png
Binary file added entry/img/assets/art/icon_twitter_1.png
Binary file added entry/img/assets/art/icon_view_L.png
Binary file added entry/img/assets/art/icon_view_m.png
Binary file added entry/img/assets/art/like_btn_off.png
Binary file added entry/img/assets/art/like_btn_on.png
Binary file added entry/img/assets/art/link.png
Binary file added entry/img/assets/art/link_1.png
Binary file added entry/img/assets/art/lock.png
Binary file added entry/img/assets/art/make_btn.png
Binary file added entry/img/assets/art/member_icon.png
Binary file added entry/img/assets/art/noticebtn.png
Binary file added entry/img/assets/art/noticebtnen.png
Binary file added entry/img/assets/art/open_project_btn.png
Binary file added entry/img/assets/art/pause_btn.png
Binary file added entry/img/assets/art/play_btn.png
Binary file added entry/img/assets/art/progress_1_off.png
Binary file added entry/img/assets/art/progress_1_on.png
Binary file added entry/img/assets/art/progress_2_off.png
Binary file added entry/img/assets/art/progress_2_on.png
Binary file added entry/img/assets/art/progress_3_off.png
Binary file added entry/img/assets/art/progress_3_on.png
Binary file added entry/img/assets/art/project-make-btn.png
Binary file added entry/img/assets/art/projectAddButton.png
Binary file added entry/img/assets/art/project_add_icon.png
Binary file added entry/img/assets/art/project_block_count.png
Binary file added entry/img/assets/art/project_object_count.png
Binary file added entry/img/assets/art/project_open_btn.png
Binary file added entry/img/assets/art/project_sound_count.png
Binary file added entry/img/assets/art/project_view_icon.png
Binary file added entry/img/assets/art/psListTopDesc.png
Binary file added entry/img/assets/art/radio_selected.png
Binary file added entry/img/assets/art/radio_unselected.png
Binary file added entry/img/assets/art/reply.png
Binary file added entry/img/assets/art/report_advice.png
Binary file added entry/img/assets/art/report_btn.png
Binary file added entry/img/assets/art/report_btnen.png
Binary file added entry/img/assets/art/reset_btn.png
Binary file added entry/img/assets/art/search_off.png
Binary file added entry/img/assets/art/share_btn.png
Binary file added entry/img/assets/art/star_off.png
Binary file added entry/img/assets/art/star_on.png
Binary file added entry/img/assets/art/stop_btn.png
Binary file added entry/img/assets/art/tag.png
Binary file added entry/img/assets/art/time.png
Binary file added entry/img/assets/art/upload_icon.png
Binary file added entry/img/assets/art/x_btn.png
Binary file added entry/img/assets/art/zoom.png
Binary file added entry/img/assets/art/zoom_v1.png
Binary file added entry/img/assets/arts.png
Binary file added entry/img/assets/avatar.png
Binary file added entry/img/assets/ban_bg.png
Binary file added entry/img/assets/ban_check.png
Binary file added entry/img/assets/ban_icon.png
Binary file added entry/img/assets/bar_horizontal.png
Binary file added entry/img/assets/bar_vertical.png
Binary file added entry/img/assets/basic_study.png
Binary file added entry/img/assets/beta_delayed.png
Binary file added entry/img/assets/bgpattern.png
Binary file added entry/img/assets/block_help.png
Binary file added entry/img/assets/block_help_icon.png
Binary file added entry/img/assets/block_helper_dispose.png
Binary file added entry/img/assets/block_icon/arduino.png
Binary file added entry/img/assets/block_icon/brush.png
Binary file added entry/img/assets/block_icon/brush_03.png
Binary file added entry/img/assets/block_icon/calc.png
Binary file added entry/img/assets/block_icon/calc_01.png
Binary file added entry/img/assets/block_icon/entry_icon_brush.png
Binary file added entry/img/assets/block_icon/entry_icon_calc.png
Binary file added entry/img/assets/block_icon/entry_icon_flow.png
Binary file added entry/img/assets/block_icon/entry_icon_looks.png
Binary file added entry/img/assets/block_icon/entry_icon_scene.png
Binary file added entry/img/assets/block_icon/entry_icon_sound.png
Binary file added entry/img/assets/block_icon/entry_icon_start.png
Binary file added entry/img/assets/block_icon/flow.png
Binary file added entry/img/assets/block_icon/flow_03.png
Binary file added entry/img/assets/block_icon/function.png
Binary file added entry/img/assets/block_icon/function_03.png
Binary file added entry/img/assets/block_icon/hardware_03.png
Binary file added entry/img/assets/block_icon/judgement.png
Binary file added entry/img/assets/block_icon/looks.png
Binary file added entry/img/assets/block_icon/looks_03.png
Binary file added entry/img/assets/block_icon/movement.png
Binary file added entry/img/assets/block_icon/moving_03.png
Binary file added entry/img/assets/block_icon/postbox.png
Binary file added entry/img/assets/block_icon/postbox_new.png
Binary file added entry/img/assets/block_icon/scene.png
Binary file added entry/img/assets/block_icon/scene_03.png
Binary file added entry/img/assets/block_icon/sound.png
Binary file added entry/img/assets/block_icon/sound_03.png
Binary file added entry/img/assets/block_icon/start.png
Binary file added entry/img/assets/block_icon/start_03.png
Binary file added entry/img/assets/block_icon/start_icon_clone.png
Binary file added entry/img/assets/block_icon/start_icon_mouse.png
Binary file added entry/img/assets/block_icon/start_icon_object.png
Binary file added entry/img/assets/block_icon/start_icon_play.png
Binary file added entry/img/assets/block_icon/start_icon_play_un.png
Binary file added entry/img/assets/block_icon/start_icon_signal.png
Binary file added entry/img/assets/block_icon/variable.png
Binary file added entry/img/assets/block_icon/variable_03.png
Binary file added entry/img/assets/block_pattern_1.png
Binary file added entry/img/assets/block_pattern_2.png
Binary file added entry/img/assets/block_pattern_3.png
Binary file added entry/img/assets/block_pattern_4.png
Binary file added entry/img/assets/blockly/create_block.png
Loading

0 comments on commit b8103ee

Please sign in to comment.