Bl4ckSh33p's Forum Posts

  • Thanks. I made a small example. It has still some old experiments and disabled code in it. The current version uses a camera with scroll to and 8 direction. Swipe and hold to keep scrolling in a direction.

    It would be great if you could swipe short and fast for a quick scroll which slows down. I tried to set speed/acceleration but it did not work out very well.

    1drv.ms/u/s!AvV_VKT3P7wZhptPVdfqtX6_Rc3-_Q

  • Hi. I want to add a full text search to my app and added the text object contents to an array to search it. Highlighting the searched world should be no big problem with find and replacing/adding some BB Code, right?

    But there is no way to get the coords of a word inside a text object to jump/scroll to it?

  • I tried to make it work without a camera for a few hours but it does not work. :(

    Its too fast or too slow or jumping.

    As workaround I created a camera with ScrollTo behavior and 8 direction movement, set to up/down. 1200 max speed, 5000 acceleration, 600 decel and just simulate up/down on swipe. Its not ideal cause it has a fixed speed (tried to use touch speed but did not work out; set speed=touchspeed moved it always to the right instead of down) but its "OK".

    Would be nice to know if someone has another solution.

  • Hi. I dont remember I ever got a prompt to associate flee types with Construct 3 or anything but everytime I download a .zip file its saved as .c3p file. The file save dialog has no option to save as .zip. It seems .c3p just replaced .zip on my Win10 Tablet. Any idea how to change/fix this?

    I installed C3 via Edge, Chrome and Windows Store but I use the chrome version most times.

    /Update: Thought I already uninstalled it but it was still there. Seems uninstalling the Windows Store C3 Beta fixed it. Downloads are saved as .zip again. But why does C3 change the default ending for all .zip files?

  • Hi. Did you read the help page already? I just used on start of layout and then create banner with show=true. And don't forget to add ad ID and publisher ID to the plug-in properties.

  • Hi. Another way without variables. Just create the 3 objects and add them to a family. Then use create object and select the family. This will spawn a random family member. 👍

  • Hi. In the manual I could only find guides for web export and Android. Any hints for iOS? I plan to get a dev account soon and try to rent a Mac to build files. But I have no idea how this works in xcode.

    PS: Any special things to do if you add IAP? Or other plugins?

  • I'll try lerp again. But I don't use a camera object. It's just used for scrolling up/down in a companion app.

    I'm curious how other people add scrolling. Please share how you do it. 🙂

  • I'll check again. Thanks! 👍

  • I tried to find something on system, browser and platform info but I could not find anything to get if a game/app runs in portrait or landscape (or if its on desktop in 16:9) to adjust the shown layers etc.

    I want to add a landscape version if the phone is rotated or when its running on PC. Is this possible?

  • Hi. I used the Scrolling actions to allow scolling up/down in my app.

    It works fine for now but it stops immediately and has no smooth scrolling (getting slower over time). Does anyone already have a good example for this?

    I used this code for scrolling:

    + Touch: Is in touch

    ----+ System: -110 ≤ Touch.AngleAt(0) ≤ -70

    -----> System: Set scroll Y to ScrollY+Touch.SpeedAt(0)×dt×5

    ----+ System: 70 ≤ Touch.AngleAt(0) ≤ 110

    -----> System: Set scroll Y to ScrollY-Touch.SpeedAt(0)×dt×5

    I tried a few things with saving last angle and last scroll speed with lerp but it did not work and jumped around instantly. Any ideas?

  • Greetings! I made a companion app for Anthem with Construct 3. 🙂

    It was made as tool for fans of the game to get the latest news and information in one place.

    Features so far:

    - News about Anthem

    - Community section with links to Subreddits, Websites, Discord Servers and YouTube Channels

    - Information about the game

    - Information about the Storm (more soon)

    - Information about demo dates (VIP and free demo)

    - Media downloads (soon)

    - Link to official Fan Art Kit

    - Link to preorder the game

    - Show custom website as home page (Clan)

    - Quick link to Anthem Subreddit

    - FAQ with frequently asked questions and answers

    I plan to add more content and features in the future like game interactions via the API, guides, lore/codex and more.

    It's available for free on Google Play. iOS web app later I hope.

    Companion for Anthem

    play.google.com/store/apps/details

    twitter.com/anthem_app

    instagram.com/anthem_app

  • Hi. Is it possible to allow Fullscreen video playback in landscape but switch the app back to portraid if the video is not in Fullscreen? Right now if I enable any orientation the app is very tiny in landscape cause it was built for portrait.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Seems I found the problem. I added "allow-popups" to allow and sandbox and it seems to work now. 🙂

  • Hi. It seems the iframe does not support links opening a new browser window. Only links on my current site work. Is there a workaround for this so a new browser window appears?