Search found 11 matches

by gregor_ws
29 Jan 2025, 01:31
Forum: Bug reports
Topic: Crash when using setBoolProperty with the python client
Replies: 1
Views: 117

Re: Crash when using setBoolProperty with the python client

Oh I think I was using the setBoolProperty method in the wrong way. I'm using this now:

Code: Select all

sim.setBoolProperty(sim.handle_scene, 'realtimeSimulation', True)
This does work as expected. Sorry for the inconvenience.
by gregor_ws
29 Jan 2025, 01:20
Forum: Bug reports
Topic: Crash when using setBoolProperty with the python client
Replies: 1
Views: 117

Crash when using setBoolProperty with the python client

Hi, I'm using the python client and wanted to set the realtimeSimulation property of the app without having to use the button in the editor. I can successfully run the various.py script from the client's tests. I added the following line to the script: sim.setBoolProperty(sim.handle_app, sim.boolpar...
by gregor_ws
29 Jan 2025, 01:01
Forum: General questions
Topic: Running healess python client
Replies: 3
Views: 515

Re: Running healess python client

Hi,

Thanks for the reply. I was using CoppeliaSim with the Python client and the registration message didn't have the chance to appear. After using the main client for a while it does appear and I can successfully register.
by gregor_ws
08 Jan 2025, 23:43
Forum: General questions
Topic: Running healess python client
Replies: 3
Views: 515

Running healess python client

Hi. I would like to run CoppeliaSim's python client in headless mode. Everything works fine with the GUI mode, using the libcoppeliaSim.so library, however I run into the following message when trying to use the libcoppeliaSimHeadless.so library: ************************************************** * ...
by gregor_ws
08 Jan 2025, 23:30
Forum: Bug reports
Topic: Issue with Python client during initialization
Replies: 2
Views: 4657

Re: Issue with Python client during initialization

Thanks for the reply, it solved my issue.
by gregor_ws
23 Dec 2024, 17:22
Forum: Bug reports
Topic: Issue with Python client during initialization
Replies: 2
Views: 4657

Issue with Python client during initialization

Hi. I'm currently trying to get the python client working with the latest coppeliasim. I can successfully run the coppeliasim.py example from here https://github.com/CoppeliaRobotics/coppeliaSimClientPython/blob/master/coppeliaSim.py . However, I'm running into an issue with the various.py example f...
by gregor_ws
06 Mar 2024, 21:11
Forum: General questions
Topic: How to obtain handles from objects in scene in plugin
Replies: 2
Views: 1085

Re: How to obtain handles from objects in scene in plugin

Thanks fferri for your response, I'll check the API.
by gregor_ws
06 Mar 2024, 18:43
Forum: General questions
Topic: How to obtain handles from objects in scene in plugin
Replies: 2
Views: 1085

How to obtain handles from objects in scene in plugin

Hi, I've been playing with plugins a bit and wanted to have access to the handle of a specific object in the scene which I know its name. How could I do this from inside the plugin?. In general, how could I obtain information from the simulation back into the plugin?. I've seen that in the OpenGL3 p...
by gregor_ws
02 Mar 2024, 03:08
Forum: General questions
Topic: Pointers on how to implement Teleop interface
Replies: 2
Views: 1412

Re: Pointers on how to implement Teleop interface

Hi fferri,

Thanks for your response. I did look at that post, and indeed it seems that I'll have to implement a plugin, similar to simExtJoystick.

Best,
Wilbert
by gregor_ws
29 Feb 2024, 17:36
Forum: General questions
Topic: Pointers on how to implement Teleop interface
Replies: 2
Views: 1412

Pointers on how to implement Teleop interface

Hi, I'm currently trying to implement a teleop interface to integrate to RLBench. For the moment, I'm struggling to find a way to capture keyboard events and respond to them in the simulation. Is there an way to achieve this? For the moment I'm basically trying to use the directional keys to make a ...