Path user configuration dialog

Typically: "How do I... ", "How can I... " questions
Post Reply
jwh2
Posts: 1
Joined: 27 Jan 2024, 14:33

Path user configuration dialog

Post 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?

coppelia
Site Admin
Posts: 10504
Joined: 14 Dec 2012, 00:25

Re: Path user configuration dialog

Post 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

Post Reply