brent_hamel's Recent Forum Activity

  • Has anyone else experienced issues with the TiledBackground object creating a no load issue at runtime in projects saved prior to the mesh distortion update?

    New projects work properly, but I haven't loaded this existing project since prior to update, and first attempt to preview results in this error, where prior to update everything worked as expected

    Console Error:

    instance.js:4 Uncaught (in promise) ReferenceError: wi is not defined

    at TiledBgInstance._DrawStandard (instance.js:4)

    at TiledBgInstance.Draw (instance.js:4)

    at Instance.Draw (instance.js:8)

    at Layer._DrawInstance (layer.js:30)

    at Layer._DrawInstances (layer.js:28)

    at Layer.Draw (layer.js:26)

    at Layout.Draw (layout.js:28)

    at C3Runtime.Render (runtime.js:73)

    at C3Runtime.Tick (runtime.js:61)

    at C3Runtime.Start (runtime.js:35)

  • First off, I'm super stoked to see Mesh Distortion supported natively now, that's awesome!!

    Second, are there plans to make imagePoints work with distorted meshes the way the collision poly does?

    Third, are there plans to include the option to set Mesh Points manually in terms of hard pixels, as opposed to being related to the sprite's origin? For my use case it'd be much better to be able to say, set 4 corner points within the layout and then just allow the sprite's origin to sit within the center of those points.

    Fourth, is there any way to allow for the mesh points to be Z-Sorted or does this happen automatically based on Sprite rotation prior to distortion?

    Lastly, are there any other objects planned to received this ability? I'd love to say use it with 9-Patch or the Tilemap plugins.

    Thanks so much, and awesome job on implementation so far!

    PS: now I just need to wait for access to projection matrices ;) ( I've built in my own, but they're slow and not great lol )

  • So just a quick update, if, by any chance someone decides to google "Super Tobu" the first things that come up, are 2 fake GoFundMe campaigns using stolen assets from the Kickstarter page, and the KS Trailer posted on a YouTube channel other than "Fireskies Studios". So I guess its a bit flattering that people like it enough to steal it and try and make some money on it? Then again its also frustrating, as its hard enough to raise enough money to keep the project alive as it is, without others trying to take some for themselves... at any rate, please be on the look out for your own projects as well!! Guaranteed this is happening to many others!! If you're project is public in any way, google it often to catch theft early!

    Much love,

    Brent

  • Thanks so much for checking it out!!

    The game is currently targeted at PC first and consoles second, which I believe is listed on the Kickstarter page, but its near the bottom and so is easy to miss (something I can fix!).

    I'm so glad you're enjoying Mega Man X, its definitely an influence on Super Tobu Adventures! among other influences as well! I still go back to plug in my cart and it from time to time! Chill Penguin is the best ;)

    As for the art, all of the character and terrain art has been done by me, as well as the concept and promo art. I did however purchase the trees/rocks, and backgrounds from two artists on itch that do amazing work!

    itch.io/profile/anokolisa

    itch.io/profile/aamatniekss

    The intention is to redo that art in my own style however, but funding and time will play major roles in how that plays out. I also did all of the Foley and SFX myself, and worked with a close friend to develop the music together. I'd have done that myself also but just didn't have enough time.

    Thanks so much for taking an interest! I hope this answers some questions for you :) Have an awesome day!

  • Hey all,

    Just wanted to let everyone know that the Kickstarter for Super Tobu Adventures! is now live. Its been so much hard work. I hope some of you decide to have a look at it, as I'm really proud of how its turned out :)

    Thanks so much for paying attention,

    Brent

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hey all!!

    I just wanted to let everyone know about the game I've been working on lately...

    Super Tobu Adventures!

    Here's the official trailer on YouTube!

    Subscribe to Construct videos now

    Kickstarter: http://kck.st/3lHrWHY

    It's a 16-Bit+ action platformer. Made entirely in C3 (obvs...) and the Kickstarter launched a couple days ago. I dunno if it looks interesting to anyone, but any help sharing and spreading the word would be amazing!! I'd also love you forever for pledging as well ;) It'd be rad to see more finished C3 games out in the market, and I've love for this to be one of them!

    Twitter: twitter.com/FireskiesStudio

    Instagram: instagram.com/fireskies_studios

    Itch.IO: fireskiesstudios.itch.io/super-tobu-adventures

    The demo is out of date, due to the time and energy it took to get the KS ready... but now that its launched, the demo is next in line!

    Thanks for paying attention :) The community on these forums has always been amazing for as long as I've been here. I may not come around for long gaps of time, but every time I come back, its so warm and welcoming, that it feels like I never left :)

    Love

  • Awesome :) I'm so glad it helped!

  • If all of your in-game text are sprites, ie the text for Mystery 1 is a sprite with text in its image, etc. Then you would store them the same way I mentioned storing the item image reference in the array. So either store the frame of animation the mystery sprite needs to display in the array ( Mystery 1 = animation Frame 0, so "0" would be the value stored ) or save the object's instance UID ( sprite_Mystery.iid ) into the array ( though you'll still need to make sure to set the right frame of animation, assuming all Mysteries are saved as seperate frames within a single object ).

    Then as I mentioned before, everything you need for a given Mystery is saved in a given Y position in the array, where each X is storing all the individual parts of the Mysteries.

    So for example:

    MysteryDataArray

    X0, Y0 = "0" ( sprite_Mystery.animationFrame )

    X1, Y0 = "0" ( sprite_Hint.animationFrame )

    X2, Y0 = "0" ( sprite_SolutionItem.animationFrame )

    X3, Y0 = "5" ( sprite_incorrectItem.count )

    So what this does, is it stores the animation frame for Mystery1's mystery text object in the first X position, then it stores the animation frame for Mystery1's hint text object in the second X position, then the frame for the solution item that you need the player to click, and finally the number of "wrong" items that will appear in the scene along with the solution.

    Then when you make your scene. You'd create an instance of your mystery text sprite, and "Set animation frame = MysteryDataArray.At( 0, CurrentMystery )" ( CurrentMystery could be a global variable, or an instance variable for a separate object that keeps track of what mystery the player is on ), then repeat for the Hint and SolutionItem sprites, finally do a "Repeat X Times" loop to create and randomize the frame for the incorrectItem sprites, where X = MysteryDataArray.At( 3, CurrentMystery )

    As a side note, I'm not sure if this is helping, or just confusing you... I'm stupid busy for the next couple weeks, but after that I can look at making you an example.c3p if that would help. I'm sorry I just can't afford the time at the moment :S

  • You could use 8 Direction Movement to have your AI Units move around if you want something straight out of the box. Or you could use the "Move At Angle" action and do you're own movement system, though keep in mind that this won't recognize solid objects as barriers, so you'd have to do your own collision checks. I'm not sure what skill level you're at, but there are lots of different options here :)

  • Yup, you're right, it was simple lol ugh... Thanks!!

  • Arrays in C3 can only hold values, not objects. So to try to store sprites in an array is impossible...

    If I were going to try and put together a scene with key items placed randomly, that the player needs to spot and then click on, I would probably try this approach first:

    - have a single sprite for all the items in your game ( depending on how many there are, this may be inefficient ), then load the items for a given scene into an animation in that sprite, that way, for a single scene, you're simply creating instances of that sprite, and setting the frame of that scene's animation to match the item you want to display.

    - create those sprite instances with randomized placement ( you can randomize along a tile grid size of your choosing, all the way down to individual decimals between pixels, it depends on what you like the look of )

    - fill the array with the frame numbers (or InstanceID's) of the items you want the play to find

    - when the player clicks on an item, loop through the array to see if any of the stored values match the item clicked. If there's a match, remove the item from the scene ( I like to make things invisible rather than destroy them ) and update the player's progress ( score, items remaining, etc ), and if there's not a match, simply do nothing, or maybe penalize the player somehow ( set a timer so they can't click again until the timer is up to prevent spam clicking, or maybe have strikes where if you have a wrong click, it counts as a strike, 3 strikes and the player it out kinda thing )

    That's where I'd start. I'd only use the array to hold the values to check against when the player clicks an item. Everything else is all is stuff that can be done pretty simply at the start of a scene. Hope this helps :)

    EDIT: I just re-read the initial post and think I may have misunderstood slightly, I'll leave the original reply in case its still applicable

    If you want the array to store the mystery and hint, then I'm assuming you're simply storing text?

    eg:

    mystery = "I sit with my hands on my face"

    hint = "I'll always have time for you"

    answer = image of a clock ( this can be the animation from or InstanceID I was referring to above

    So I'd set this up so that each of these values would have its own Y coord in the array, so Y0 is all of the mysteries, Y1 is all the hints, Y2 is all the InstanceIDs of the item image you want to display.

    Then each X of the array is a different mystery. That way when a new scene starts, you can use smart random ( so it won't pick a number that's already been chosen) to select an X coord in the array, then you just look at each Y value for the different parts of the mystery itself.

    Does that help?

  • I personally like to use the idea of states. The idea being that a unit ( in this case your enemy ) is always in a state of existence. Possible states could be:

    - "Idle" ( sitting there doing nothing )

    - "Patrolling" ( maybe going back and forth between 2 points on the map )

    - "AwareOfPlayer" ( possibly looking at the player/paying attention to what the player is doing )

    - "AttackPlayer" ( actively trying to damage the player )

    - "ReactToDamage" ( reacting to taking damage from the player )

    - etc, etc

    Then its just a matter of putting together whatever conditions you want to have met, to trigger a new state. Like getting hit by a player bullet would trigger "ReactToDamage" for example. The player being too far away from an enemy might mean the enemy defaults to "Idle" or "Patrolling". Perhaps an enemy that is "Patrolling" will stop sometimes and be "Idle" for a few seconds and then go back to "Patrolling" again. The possibilities are pretty much limitless :)

brent_hamel's avatar

brent_hamel

Member since 31 Dec, 2009

None one is following brent_hamel yet!

Trophy Case

  • 14-Year Club
  • Forum Contributor Made 100 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Email Verified

Progress

18/44
How to earn trophies