Page 1 of 1

Path user configuration dialog

Posted: 27 Jun 2024, 18:46
by jwh2
I'm working on the BubbleRob line following tutorial and have gotten to the point about creating the path.
I opened the path's user configuration dialog to tell it to extrude the path.
Then I updated the customization script from the tutorial and restarted it.
Now I'm getting the following error:

[CoppeliaSim:error] object removal can't be triggered from within the object itself: some objects were not removed.
[/Path/Script:error] ...peliaSimEdu/lua/models/deprecated/path_customization.lua:513: attempt to index a nil value (field 'paths')
stack traceback:
...peliaSimEdu/lua/models/deprecated/path_customization.lua:513: in function 'path_customization.setup'
(...tail calls...)
...peliaSimEdu/lua/models/deprecated/path_customization.lua:4: in function 'sysCall_init'

In addition, I don't see the three bar icon for the path's user configuration dialog anymore.

Any thoughts?

Re: Path user configuration dialog

Posted: 01 Jul 2024, 12:24
by coppelia
Hello,

if you are running CoppeliaSim V4.7, then you should fix the script content and instead of

Code: Select all

path = require('path_customization')
do

Code: Select all

path = require('models.path_customization')
But you are right, the tutorial is not up-to-date for CoppeliaSim V4.7

Cheers