Yeah but it doesn't work.
With ctrl+SPACE I can start and stop the simulation as before. But with ctrl+B nothing happens.
Shortcuts
Re: Shortcuts
That is strange.. I cannot explain why this doesn't work for you. If the focus is on the main window, it should work. Can you try with a different scene, that has a single view (default) with a single robot?
Cheers
Cheers
Re: Shortcuts
I just tried and nothing happens with ctrl-B.
EDIT: Just to let you know. If I go in about VREP I have the 3.2.0 Version.
EDIT: Just to let you know. If I go in about VREP I have the 3.2.0 Version.
Re: Shortcuts
Can you try to add a customization script to a object in the scene, and to put following code in it:
What does it print if you try <ctrl>+b? What does it print if you try <ctrl>+m?
You could also add simCameraFitToView(0) in the above code, and have your customization script take care of the camera adjustment. The only problem, it will only adjust for the view you specify, not the view that is in focus..
Cheers
Code: Select all
if (sim_call_type==sim_customizationscriptcall_nonsimulation) then
local a,b=simGetSimulatorMessage()
if a==sim_message_keypress then
print(b[1],b[2])
end
end
You could also add simCameraFitToView(0) in the above code, and have your customization script take care of the camera adjustment. The only problem, it will only adjust for the view you specify, not the view that is in focus..
Cheers
Re: Shortcuts
Oh.. it should say 3.2.1, so you do not have the BETA version it seems
Cheers
Cheers
Re: Shortcuts
I thought about it and I wrote it in my previous message because I thought about something like that.
I will try the beta version and come back to you.
Thanks for the effort.
I will try the beta version and come back to you.
Thanks for the effort.
Re: Shortcuts
I updated V-REP to 3.2.1 and it is working.
Thanks.
Thanks.