Iván Martínez Mateu
Iván Martínez Mateu
As I need to add a component of the PlatformEffector2D type to the colliders generated by the tool to avoid the player getting stuck on the walls of the platforms...
Hi, First I want to show my code: ``` QDropbox* api; api= new QDropbox("****","****",QDropbox::Plaintext,"api.dropbox.com"); api->requestToken(); connect(api,SIGNAL(requestTokenFinished(QString,QString)),this,SLOT(requestToken())); ``` connect(api,SIGNAL(tokenExpired()),this,SLOT(showAuthError())); The problem I am getting is that when api->requestToken() is being executed,...
Hi, I need to develop a LaTeX web application program in Java that compiles LaTeX documents without the need of making external communication with other process, so the main requirement...