由用户创建的信息 Konstantin Khomyakov
07 June 2016 11:04
07 June 2016 10:48
Здравствуйте!
Давайте разбираться, что за ошибка такая заявилась
Уточним еще раз ваш порядок действий:
- Все объекты в одном файле. Написали нодовую логику, выбирая объекты
- Объект экспортируем/копируем(??) в новый файл.
- Удаляем объект из исходного файла (через дупли группу??)
- Линкуем объект из внешнего файла
- Получаем ошибку при экспорте Х_Х
Все так?
Давайте разбираться, что за ошибка такая заявилась
Уточним еще раз ваш порядок действий:
- Все объекты в одном файле. Написали нодовую логику, выбирая объекты
- Объект экспортируем/копируем(??) в новый файл.
- Удаляем объект из исходного файла (через дупли группу??)
- Линкуем объект из внешнего файла
- Получаем ошибку при экспорте Х_Х
Все так?
07 June 2016 10:35
06 June 2016 18:57
06 June 2016 18:25
I think I don't know what does it mean "export to engine"…Hello!
In apps_dev, I make python3 project.py -p myproject compile
And I use .html in deploy/apps
Isn't it enough to "export to the engine" ?
"compile" command doesn't export the scene. It is for engine compiling/updating (depends on the type of the project).
To export your blender scene you need to use:
python3 project.py -p myproject reexport
Besides you can check in the browser console if your cube is really selectable:
var obj = b4w.scenes.get_object_by_name("obj_name");
obj.render.selectable
01 June 2016 17:56
Hello!
This video from our recent conference may answer some of your questions
https://youtu.be/dWEHg5Yzcys?t=1113
You should use the append_custom_callback method from "logic_nodes" module, instead of creating manifolds.
https://www.blend4web.com/api_doc/module-logic_nodes.html#.append_custom_callback
It takes two parameters: id for your callback and callback function itself. In the node you need two specify id, which you use in this method's call.
This video from our recent conference may answer some of your questions
https://youtu.be/dWEHg5Yzcys?t=1113
You should use the append_custom_callback method from "logic_nodes" module, instead of creating manifolds.
https://www.blend4web.com/api_doc/module-logic_nodes.html#.append_custom_callback
It takes two parameters: id for your callback and callback function itself. In the node you need two specify id, which you use in this method's call.
24 May 2016 14:06
Is the API method the only way to create a click drag action to rotate objects like in the "Experience Curiosity" app or can it be done with the logic nodes?Hello!
Also if its not available will it make it into an upcoming release?
For now there is no such functionality in the Logic Editor.
We have some plans to enlarge "Switch Select" node flexibility, but I can't say exactly when
19 May 2016 10:44
is there a way to do this same thing using logic nodes?Hello!
For now there is no functionality to get the distance from camera to object using only logic nodes without coding. But you can do it with "JS Callback" node, which can use functions prepared in javascript part of your application (in this case function will be similiar to the one in Yuri's answer).
Scale can be changed via "Transform Object" node.
16 May 2016 10:35