Skip to content

Commit

Permalink
Blend4Web release 17.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
D504 committed Nov 22, 2017
1 parent 67ba855 commit 36896dd
Show file tree
Hide file tree
Showing 873 changed files with 24,339 additions and 28,933 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ DISTS_SDK = dist_ce dist_pro dist_ce_lite dist_pro_lite
DISTS_SDK_FORCE = dist_force_ce dist_force_pro dist_force_ce_lite dist_force_pro_lite

# exec "VERPREFIX=_new_prefix make -e" to override
VERPREFIX=""
VERPREFIX=
VERSION=`sed -e 's/\./_/' -e 's/ *[^ ]\+ *//' -e 's/ \+.*/'$(VERPREFIX)'/' VERSION`

.PHONY: all
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Support
We are always glad to answer your questions on the `Blend4Web forums <https://www.blend4web.com/en/forums/>`_. We also offer assistance for Blend4Web PRO owners with any technical issues which may arise (more `here <https://www.blend4web.com/en/services/support/>`_).


.. |latest_version| image:: https://img.shields.io/badge/latest%20version-17.10-blue.svg
.. |latest_version| image:: https://img.shields.io/badge/latest%20version-17.10.1-blue.svg
:target: https://www.blend4web.com/en/downloads/
:alt: Latest Version of Blend4Web

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Blend4Web 17.10 SDK
Blend4Web 17.10.1 SDK
2 changes: 1 addition & 1 deletion addons/blend4web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
bl_info = {
"name": "Blend4Web",
"author": "Blend4Web Development Team",
"version": (17, 10, 0),
"version": (17, 10, 1),
"blender": (2, 79, 0),
"b4w_format_version": "6.03",
"location": "File > Import-Export",
Expand Down
Binary file removed addons/blend4web/bin/2_76/b4w_bin_Darwin_64.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_76/b4w_bin_Linux_32.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_76/b4w_bin_Linux_64.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_76/b4w_bin_Windows_32.pyd
Binary file not shown.
Binary file removed addons/blend4web/bin/2_76/b4w_bin_Windows_64.pyd
Binary file not shown.
Binary file removed addons/blend4web/bin/2_77/b4w_bin_Darwin_64.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_77/b4w_bin_Linux_32.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_77/b4w_bin_Linux_64.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_77/b4w_bin_Windows_32.pyd
Binary file not shown.
Binary file removed addons/blend4web/bin/2_77/b4w_bin_Windows_64.pyd
Binary file not shown.
Binary file removed addons/blend4web/bin/2_78/b4w_bin_Darwin_64.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_78/b4w_bin_Linux_32.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_78/b4w_bin_Linux_64.so
Binary file not shown.
Binary file removed addons/blend4web/bin/2_78/b4w_bin_Windows_32.pyd
Binary file not shown.
Binary file removed addons/blend4web/bin/2_78/b4w_bin_Windows_64.pyd
Binary file not shown.
25 changes: 13 additions & 12 deletions addons/blend4web/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -5447,18 +5447,19 @@ def run(self, export_filepath):

path_to_sdk = bpy.context.user_preferences.addons[__package__].preferences.b4w_src_path
path_to_viewer = os.path.join(path_to_sdk, os.path.dirname(PATH_TO_VIEWER))
relpath_to_viewer = os.path.relpath(export_filepath, path_to_viewer)
relpath_to_viewer = guard_slashes(os.path.normpath(relpath_to_viewer))

sync_option = bpy.context.user_preferences.addons[__package__].preferences.b4w_sync_with_browser
is_sync_instance = False
if not bpy.app.background:
is_sync_instance = server.is_synchronized(relpath_to_viewer)
if self.run_in_viewer and ((sync_option and not is_sync_instance) or not sync_option):
sync = "&sync=true" if sync_option else "&sync=false"
port = bpy.context.user_preferences.addons[__package__].preferences.b4w_port_number
url = "http://localhost:" + str(port) + "/" + PATH_TO_VIEWER + "?load=" + relpath_to_viewer + sync
server.open_browser(url)
if self.run_in_viewer:
relpath_to_viewer = os.path.relpath(export_filepath, path_to_viewer)
relpath_to_viewer = guard_slashes(os.path.normpath(relpath_to_viewer))
sync_option = bpy.context.user_preferences.addons[__package__].preferences.b4w_sync_with_browser
is_sync_instance = False
if not bpy.app.background:
is_sync_instance = server.is_synchronized(relpath_to_viewer)
if ((sync_option and not is_sync_instance) or not sync_option):
sync = "&sync=true" if sync_option else "&sync=false"
port = bpy.context.user_preferences.addons[__package__].preferences.b4w_port_number
url = "http://localhost:" + str(port) + "/" + PATH_TO_VIEWER + "?load=" + relpath_to_viewer + sync
server.open_browser(url)

print("EXPORT OK")
else:
bpy.ops.b4w.export_messages_dialog('INVOKE_DEFAULT')
Expand Down
9 changes: 4 additions & 5 deletions addons/blend4web/logic_node_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ def check_common_object_path_prop_type(node, prop_name, type, field_name):

for n in node.id_data.nodes:
if n.type == "DEF_FUNC" and n != node:
if n.logic_functions["id0"].function == node.logic_functions["id0"].function:
if "id0" in n.logic_functions and n.logic_functions["id0"].function == node.logic_functions["id0"].function:
node.add_error_message(err_msgs, _("The function with the same name is already exits"))

all_args_names = []
Expand Down Expand Up @@ -999,10 +999,9 @@ def is_in_stack(ntree, tree, funcname):
if (is_in_stack(node_tree, tree, funcname)):
node.add_error_message(node.error_messages.link_err, _("Recursion is not allowed!"))
else:
stack.append({"ntree": node_tree, "tree": tree, "funcname": funcname, "callnode": node})
check_tree_step1(node_tree, funcname, stack)

gen = ((t["ntree"].name, t["funcname"]) for t in stack)
stack_copy = copy.copy(stack)
stack_copy.append({"ntree": node_tree, "tree": tree, "funcname": funcname, "callnode": node})
check_tree_step1(node_tree, funcname, stack_copy)

def update_connectivity(self):
check_tree_step1(self, None, [])
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_app.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -1730,7 +1730,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_camera_anim.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_fps.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_gp_conf.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_gyroscope.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_hmd.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_hmd_conf.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_mixer.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_mouse.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_npc_ai.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_ns_compat.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_preloader.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_screenshooter.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/addons_storage.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/b4w.html
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/b4w.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_anchors.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_animation.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_armature.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_assets.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_camera.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -2270,7 +2270,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_config.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_constraints.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_container.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_controls.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_data.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_debug.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_geometry.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_hud.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_input.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_lights.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_logic_nodes.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion deploy/api_doc/ext_main.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-an
<br class="clear">

<footer>
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Oct 31 2017 17:49:05 GMT+0300 (MSK))
Blend4Web API Reference (generated by JSDoc 3.4.0 on Tue Nov 21 2017 11:16:44 GMT+0300 (MSK))
<a href="https://www.blend4web.com">www.blend4web.com</a>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
Expand Down
Loading

0 comments on commit 36896dd

Please sign in to comment.