jatin1726's Forum Posts

  • Hi All,

    I need urgent help about playing video on the top face of 3d shape cube. I have to use audio too so I can't use sprite animations or gifs.

    Thanks in advance

    Tagged:

  • Thanks DOP, But I meant using touch in 3D environment to move the scene. Right now there are samples for 2d but nothing for 3d. Like we move touch left and right to view the surrounding scene in PUBG or call of duty games. Hope I was able to clear the requirement. and I know u are always helpful so big thanks for that and hoping I will receive some solution from you this time too.

  • Hi Friends,

    Please tell me how to move the game view left/right/up/down using touch gestures instead of mouse cursor movement. is it even possible?

    Tagged:

  • Hi Friends,

    Currently, the speech recognition sample makes speech recognition auto stop after some time then the user has to again tap to activate it. How can I make speech recognition keep running automatically in the background so that anytime the user speaks anything then it can respond accordingly without taping a second time on the button? (The first tap on button is essential for activating mic I know), Any capx example will be highly appreciated.

    Thanks in advance.

  • Hi Friends,

    I have a requirement where user has to speak in the microphone and his voice is heard back in form of robotic voice. Talking tom app is similar one. Guys, any help in trick to get this robotic voice? any sample capx or reference link will be big help.

    Thanks in advance.

  • Hi Friends,

    Is there any plugin available for converting canvas recording from webm to mp4?

    Please help guys this is urgent help required.

    Regards,

  • Thanks Ashley for this information. Hope Chrome too allows MP4 and then the possibilities are endless while use construct 3.

    Any construct 2/3 plugin for converting webm to mp4 available?

  • Hi Friends,

    I would like to learn from you that if there is any way we can download canvas recording in mp4? as of now downloading is only possible in webm format for video.

    Please help.

    Regards,

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hi Friends,

    Can someone urgently help me in enable screenhsot share in iOS. It works fine on android and webshare is now supported ios 14 version but construct 3 shows unsupported features. You can reproduce the issue by using screenshot template of construct 3 on iOS browser. Ashley please help me out this.

  • jatin1726, I'm facing the same issue. Works good on desktop. Doesn't work on mobile. Did you find a fix?

    Use word in pair, like instead of 'earth', use 'the earth' and it will start detection easily.

  • Hi Friends,

    Ashley How can i detect user has switched on Bluetooth of the device or not? right now it only can request for bluetooth but it can't tell user enable it. If user enables bluetooth I want an image to appear and if bluetooth is disable the image should stay hidden, is it possible using c3 bluetooth plugin?

    Tagged:

  • Hi Friends,

    I need urgent help where how to share variable '&score' value to the facebook post. I have gone through the construct forums but all solutions are old and not working. Also, facebook sharer.php doesnt allow inclusion of score variable.

    Please help me.

    Regards,

  • jatin1726 if I ever get a free moment I will make an example of how I do bilboarding sprites. but life is crazy for me at the moment.

    I will wish u get peace and prosperity soon for all your hardwork. and really looking forward to your this tutorial. God bless u.

  • Hi Friends,

    Need urgent help..can anyone tell me how to get camera and microphone request access one click of button. As of now, construct uses two separate calls for camera and microphone.

    Thanks in advance.

    Tagged:

  • > But I noticed it gives a random RBG value.

    It is not random! It's RGB value from the pixel in the center. It may not be accurate because of the camera noise etc. So if you need better detection, you have to calculate an average color for an area of pixels.

    You can take snapshots constantly, but you still have to wait for snapshot to finish. Saving a snapshot is not a fast operation, especially on large camera image. So you may not be able to detect moving objects with this method.

    And if you need to detect a red object anywhere on the screen, this will be nearly impossible to make with events. I suggest you look for some JS library.

    Thanks DOP