Hi, the runtime creation of an Entity is not possible anymore (it was at some point during the Qt3D development)
Basically the classic way to create an item does nothing:
var component = Qt.createComponent("qrc:/MyEntity.qml");
var meshObj = component.createObject(parent, { });
Attached a modified version of the "controls" example to reproduce the issue.
Hope it helps