luckyrawatlucky's Forum Posts

  • lucid animations with sounds not importing in construct 3 properly. events are not being added, containers also not being added

  • Maybe this is a bug. I created bug report on this. and same bug was created year ago by someone where Ashley Assigned himself but not resolved yet.

  • R0J0hound I tried both ways apply HUD and formula. I was able to fill only upto certain area and both ways has same result.

    is there any way to paste object at a position. there is no option in actions but can we do this through Javascript?

  • R0J0hound see my events and you'll see what issue I'm facing.

    layout is rotated at 270 degree So my input from mouse also being rotated. So if I drag my mouse top to bottom in canvas drawing from right to left.

    myfile

  • I have layout and canvas inside. I'm drawing in canvas using brush sprite. I have requirement to rotate layout at 270 degree and now drawing in canvas has issue because of coordinate. how to I translate touch coordinates for rotated layout?

  • here are few my opinions what Construct can do to spread words

    1. in the free version don't provide build service and Increase the free events OR make it unlimited events for free users because. and yes this system will have some cons like people can work without pay and then can build by just paying single month. but in this case you can force people to buy yearly license and this is also not good. (just ignore first point)

    2. Provide FREE license to gaming Youtubers OR such youtubers who make content like game development and they will promote you product by making content on construct 3. You can do this by creating a form which youtubers will apply and then you can check their channel and give them FREE license. I know few companies did same thing to promote their product.

    these 2 things came in my mind So I did share.

  • this was the only reason I made a dark theme for myself and later I uploaded it for public too.

    Note: If you use JavaScript then don't use my theme, I didn't worked on scripting part.

    ThemeDark

  • I'm facing an issue with drawing in drawing canvas. If you download my attached file and preview it then

    first draw outer circle around small circle then draw over small circle.

    look at the edges of the small circle there are 2 things happening.

    1) edge are overlapping however I didn't make small circle large then the hole of bigger circle. they are almost same sized. but while drawing it looks like small dot's size is bigger than bigger circle's dot.

    2) edges are being sharp.

    I think smooth edges is the reason for both the issues.

    is there any way we can avoid both issues?

    Construct file

    Tagged:

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • posting just so this post don't go off for replies.

  • btw I got that code extracted. and I got what I was wanted.

  • why don't you answer here so other people can also know

    luckyrawatlucky#2106

  • Write your discord

    what it means?

  • this is what I did and I got this result 1,6,8,15,28,40,45,66,84

  • if you play this game. then check the dropdown which showing number of pieces of image.

    Try to use a custom img. you'll notice that it number of pieces are different on different image sizes. it calculates more than 5 possible number of pieces that can be done for that image. I want to know how they did calculation for that. I did inspect that page and found that particular code which does that task but problem is I'm not a programmer and don't know programming language. if anybody knows then can you please convert this into construct 3?

    Thanks in advance.

    Util.calcPieces = function(options) {
     var w = options.image.width,
     h = options.image.height,
     select = document.getElementById('set-parts'),
     selectedIndex = 0,
     option,
     size,
     cols,
     rows,
     parts;
     select.innerHTML = '';
     for (var i = 0; i < options.options.length; i += 1) {
     var size = ~~Math.sqrt(w * h / options.options[i]),
     cols = ~~(w / size),
     rows = ~~(h / size);
     while (cols * rows < options.options[i]) {
     size--;
     cols = ~~(w / size);
     rows = ~~(h / size);
     }
     if (parts != cols * rows) {
     parts = cols * rows;
     option = document.createElement('option');
     option.value = options.options[i];
     option.innerHTML = options.template.replace('%d', parts);
     select.appendChild(option);
     if (options.options[i] === options.selected)
     option.selected = true;
     }
     }
    };
  • then I think whoever train chatGPT then he should share those texts which used to train chatGPT. So everybody can train chatGPT just by copy paste.

    because not everybody knows how to train it properly including me.