hola que tal, se pueden crear hilos con CORONA? mi intención es hacer un juego con la detección de acciones del usuario en otro hilo [import]uid: 219778 topic_id: 35439 reply_id: 335439[/import]
server - se pueden usar “Lua co-routines” de una manera similar. Aqui esta un mensaje de uno de nuestros ingenieros:
Co-routines allow you to pause some code that may take a long time to complete or while waiting for an event to occur. This could occur in co-routine and not part of the regular code flow.
I did an example app that computed prime numbers. This can take a long time and make the app feel like it’s hung so I put it in a co-routine and had it pause after a certain number of passes. This allowed me to update a progress indicator showing that the app wasn’t hung and allow the user to abort the process.
[import]uid: 10668 topic_id: 35439 reply_id: 141121[/import]
server - se pueden usar “Lua co-routines” de una manera similar. Aqui esta un mensaje de uno de nuestros ingenieros:
Co-routines allow you to pause some code that may take a long time to complete or while waiting for an event to occur. This could occur in co-routine and not part of the regular code flow.
I did an example app that computed prime numbers. This can take a long time and make the app feel like it’s hung so I put it in a co-routine and had it pause after a certain number of passes. This allowed me to update a progress indicator showing that the app wasn’t hung and allow the user to abort the process.
[import]uid: 10668 topic_id: 35439 reply_id: 141121[/import]
gracias lo revisaré. [import]uid: 219778 topic_id: 35439 reply_id: 141893[/import]
gracias lo revisaré. [import]uid: 219778 topic_id: 35439 reply_id: 141893[/import]