Questions tagged [minko]

Minko is a 3D framework for web, desktop and mobile devices, developed by Aerys. It is built in C++ and open source under the MIT license.

Minko is a 3D framework for web, desktop and mobile devices, developed by Aerys. It is built in C++ and open sourced under the MIT license.

Minko logo

The engine source code is hosted on GitHub. At the moment, supported platforms include:

  • Windows
  • OS X
  • Linux
  • HTML5
  • iOS
  • Android

Minko comes with a number of plugins, including VR device support and a powerful HTML5 bridge to build interfaces.

More information on the official website and the FAQ.

27 questions
0
votes
1 answer

Minko - Android light issue

I am working with minko and seem to be facing a light issue with Android. I managed to compile for linux64, Android and html a modified code (based on the tutorials provided by Minko). I simply load and rotate 4 .obj files (the pirate one provided…
Jeux
  • 5
  • 5
0
votes
1 answer

Very simple js test that doesn't work with Minko

I've some problem in sending a simple message in overlay-example of Minko library. I tried use the c++ code of this example without modifying it, while I add a Minko.addListener in my javascript. The code of the js is here: …
D.Giunchi
  • 1,900
  • 3
  • 19
  • 23
0
votes
1 answer

Sending a message from c++ to javascript

is there an example in which a message from c++ sent like dom->sendMessage("something") , is used inside a javascript? thank you, daniele
D.Giunchi
  • 1,900
  • 3
  • 19
  • 23
0
votes
1 answer

minko get object from dom

I create an object in my javascript function, and I'd want to retrieve it in c++ from dom class for change some values, but I can access only by id, tag or class that are part of css syntax. Is there the possibility to get my object and set values…
D.Giunchi
  • 1,900
  • 3
  • 19
  • 23
0
votes
0 answers

Minko - getElementById causes runtime exception to be thrown: TypeError: Minko.tmpElement is null

I am using minko and html-overlay feature. In my overlay onload()->connect() method I have the following statements: ... gameInterfaceDom = dom; but1 = gameInterfaceDom->getElementById("id_but1"); //trouble here ! but2 =…
Jeux
  • 5
  • 5
0
votes
1 answer

How to load .dae object with texture, and material

I just started with Minko and trying to undestand this https://github.com/aerys/minko/blob/master/doc/tutorial/06-Loading_3D_files.md tutorial. I did some steps: sceneManager->assets()->loader() ->queue(FIREAXE_D) ->queue(FIREAXE_N) …
0
votes
1 answer

minko bone animation with hardware support causes Error #3659: AGAL validation failed

I updated minko as3 code to run on standard profile instead of baseline and i have a mesh with animations that i know for a fact, has 185 vertices constants, maximum allowed amount is 250 on standard, but i keep getting [trace] Error: Error #3659:…
RIAwolf
  • 11
  • 2
0
votes
1 answer

How to capture and process system events in minko?

Is it possible to get system events such as for Android Activity life cycle events (onCreate, onStart, onPause, onResume...) in Minko ? I can see in Canvas.hpp for example : Signal::Ptr _resized; and…
Jeux
  • 5
  • 5
0
votes
1 answer

is it possible to trigger c++ code, initiated by html events in minko?

Using minko, "html overlay" feature, is it possible to send events to c++ code from html? The example provided, with the framework clearly demonstrate how to send events from c++ towards html (by incrementing a counter and having it reflect in…
Jeux
  • 5
  • 5
0
votes
2 answers

minko / lua issue : premake5.lua:3: attempt to index global 'minko' (a nil value)

I am working with minko and managed to compile MINKO SDK properly for 3 platforms (Linux, Android, HTML5) and build all tutorials / examples. Moving on to create my own project, I followed the instructions on how to use the existing skeleton…
Jeux
  • 5
  • 5
0
votes
2 answers

Can't seem to understand c++ shared_ptr and reliable pointers to their representing objects

I'm a c++ newcomer and trying to work with the gameengine framework minko. Minko uses shared_ptr very excessively and I have issues understanding how exactly they work, since they seem to escape general c++ *ptr logic. Somewhere in the…
radonthetyrant
  • 1,346
  • 1
  • 8
  • 13
0
votes
1 answer

Error when compiling the Minko engine SDK for HTML 5

I have followed all steps mentioned in Compiling the SDK for HTML5 to compile the Minko framework to HTML5. When I run the batch file build_html5.bat, the error mingw32-make is not recognized as an internal or external command, operable program or…
Sarjana
  • 9
  • 2
1
2