I have been looking for a way to ingerate QML inside Maya, is there had any kind of experience doing the same...!
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/748e2f64-9b52-43c0-8dea-4e859441722d%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I'm doing the same.Keep in mind that the the current version of Qt, 5.2, is light-years ahead in development for QML. QML is a fairly new tech on the block and hasn't had all of its kinks worked out yet - for example they just recently ripped out their Javascript engine for another one, custom built for QML.If you're looking to expose Maya to QML I would suggest you go the route of developing it externally, using 5.2 or upwards and communicate with Maya and back via interprocess means.Libraries like RPyC for instance essentially mirrors the external python environment onto your local environment, so the development tactics (simple things like calling functions directly, signals and slots, passing functions as arguments et. al.) translate without hiccups. Pure socket programming (CommandPort et. al.) however would have you serialise each request (to strings, for example) which would incur a slightly different development style.
On 2 March 2014 18:53, LIJU kunnummal <ljk...@gmail.com> wrote:
I have been looking for a way to ingerate QML inside Maya, is there had any kind of experience doing the same...!
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/748e2f64-9b52-43c0-8dea-4e859441722d%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.