Hi,I've read BLACK FOR A WHILE BEFORE LOADING SCREEN?,but it still have a long time to load, I wonder if I can add some Html or js to make a preload page outside the loading of Construct3 Engine loading.
I try to add a line of html in index.html of the export C3 project
<html>
<body>
<div id="index" style="float: left;">加载可能需要一点时间,请等待!</div>
... //C3 loading
</body>
</html>
and I've added an onload event in C3 Engine js Code before selecting this div and delete it, maybe it can avoid totally black time.
Hope anyone can tell me more efficient way to do that !