[a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / s / t / u / v / vg / vm / vmg / vr / vrpg / vst / w / wg] [i / ic] [r9k / s4s / vip] [cm / hm / lgbt / y] [3 / aco / adv / an / bant / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / pw / qst / sci / soc / sp / tg / toy / trv / tv / vp / vt / wsg / wsr / x / xs] [Settings] [Search] [Mobile] [Home]
Board
Settings Mobile Home
/bant/ - International/Random

Name
Options
Comment
Verification
4chan Pass users can bypass this verification. [Learn More] [Login]
File
  • Please read the Rules and FAQ before posting.

08/21/20New boards added: /vrpg/, /vmg/, /vst/ and /vm/
05/04/17New trial board added: /bant/ - International/Random
10/04/16New board for 4chan Pass users: /vip/ - Very Important Posts
[Hide] [Show All]


Janitor acceptance emails will be sent out over the coming weeks. Make sure to check your spam folder!


[Advertise on 4chan]


File: op.png (632 KB, 756x756)
632 KB PNG
ecelebs edition

>Demo Days
Next: https://itch.io/jam/agdg-demo-day-70
Previous: https://itch.io/jam/agdg-demo-day-69

>AGDG Resources
https://hackmd.io/SNd2YQugRG-36CLYc8Og2w

>Progress Posting Guide
https://pastebin.com/0xEt5atn

>Helpful Links
New Threads:
>>>/bant/agdg
>>>/vg/agdg

Archives:
https://archived.moe/bant/search/subject/agdg/
https://arch.b4k.dev/vg/search/subject/agdg/
/agdg/ Steam Games: https://made-by-agdg.vercel.app/

>How to WebM
https://obsproject.com
https://github.com/argorar/WebMConverter
size limit too small? >>>/wsg/other+boards

>Previous Thread
https://archived.moe/bant/thread/24742433/
>>
File: JonDoingPushups.png (441 KB, 1073x594)
441 KB PNG
proggy anchor
>>
>>24798577
first for godot
>>
>>24798577
why does it take so god damn long for steam to review game builds? 3-5 business days my ass
>>
>>24798580
Great thanks for the reminder. 10 sets of 40 a day isnt that hard.
>>
File: file.webm (1.9 MB, 1080x810)
1.9 MB
1.9 MB WEBM
>>24798580
>proggy anchor
All rooms and entities in a world are still simulated when not being rendered, and are now present in the same world space.
>>
Gray Box maxxing
>>
File: DeadLimbo2.jpg (131 KB, 1920x1080)
131 KB JPG
>>24798580
Crosspostan from AGDG, forgives pls.

Further work on the astral plane / limbo / deadplane (name WIP). Got a few more of the towers modeled and placed, remodeled a few to be less ostentatious and match the vibe a bit better. Cleaned up the lighting and removed the giant purple thingy.

Hard to tell in the dark lighting, but the other towers also have the ancient brick texture, hopefully tying the whole thing together aesthetically.
>>
File: file.png (210 KB, 1250x434)
210 KB PNG
>>24798580
made assets for the other boards.
Now just need to think about what gimmick should each boards have.
>>
File: corpse scene.jpg (144 KB, 975x765)
144 KB JPG
>>24798580
Good night, agdgies. How y'all doing?

I was working on new sprites overall, revamping the looks of the demo
>>
File: Waypoints.png (124 KB, 1218x715)
124 KB PNG
I added the concept of "waypoints" to my enemy classes. Still ironing things out but my snail will soon effectively patrol in some semi-random patterns leaving slime trails.

I also woke up in a creative furvor at about 3:00AM earlier this morning and designed several new monster encounters and a boss. Its the kind of synergy where the enemies each teach a mechanic; and then the boss uses all variations of that mechanic together. Its all just ideas and a lot of work away from making a reality but it was a productive brainstorm.

Here are some of the ideas:
- Forrest of tall plants, and some fake plant that attacks back. Which one are the fakes will randomize and have a small cosmetic detail missing to tell them apart. Attacking the real plants will cause a hostile environmental effect (and cause the fake plants to giggle).

And for a more 'tech' level:
- Several machine enemies that deploy shockwaves that ask you to adopt a behavior or receive a penalty. "Stop" "Go" and "Turn Back". To approach the enemy to deal the most damage, you ideally pay attention to which behaviour each robot demands.
- Some turrets that force behaviour "Don't Approach" and "Spread Apart" (for multiplayer) that penalise you for standing near your party members with a chain-lightning. I think it would be appropriate to juke the "Don't Approach" turret to shoot other enemies.
- A BOSS with conveyerbelts pushing you away which tie these individual mechanics above into a three-phase Dance-Dance-Revolution approach puzzle.
>>
>>24798580
His form is all fucked up.
>>
File: proggy8.png (623 KB, 1198x511)
623 KB PNG
>>24799087
I've upgraded to orange checkerboard maxxing
>>
File: Archer.png (799 KB, 908x404)
799 KB PNG
>>24798580
The Skeleton Archer uses its body as a quiver, pulling out arrows (sometimes poisonous) to shoot at the party members behind your tank.
>>>/wsg/6210675
>>
File: 103-QuestCompletionHook.jpg (454 KB, 1919x1079)
454 KB JPG
>>>/v/744964951
Finally got walking and jogging transitions working albeit rough right now. It turns out my controller generates large numbers than I realized. Print string is a god send.
>>
File: leaderboard.png (1.96 MB, 1652x872)
1.96 MB PNG
Made this leaderboard for my shoot em up plane roguelite.

Whats nice is that selecting one of the leaderboard slots starts an endless waves mode where you get to use the plane at the peak of its power with all upgrades implemented. So that you can relive your most successful runs. without it actually contributing to campaign progression.

Just thought it'd be neat
Now to figure out how to actually make the game fun.
>>
>>24801325
haven't heard of that feature before, neat
>>
>>24798577
i was trying to have a weapon that has a hit box that activates upon button press but otherwise it is inactive
i was going to use this to make a short range weapons and melee weapons
i tried a boolean type solution to this:

func _input(event) -> void:
area#D.visible = false
if event is InputEventMouseButton:
area3D.visible = true
anim.play("cast", -1, 1.5)
check_and_shoot()
but this didnt really work the hit box was still active even without a button press
my goal is hit box is usually inactive unless if i were to click my mouse, then, the hit box activates briefly to deal damage before deactivating again
>>
>>24802558
What i do is set a cuatom event to a sphere trace that only activates when I swing the weapon or the animation starts. Then it disables it.
>>
>>24801062
Looking good. Cozy
>>
>>24801144
Wait, are author of this game? I think I saw your devlog



[Advertise on 4chan]

Delete Post: [File Only] Style:
[Disable Mobile View / Use Desktop Site]

[Enable Mobile View / Use Mobile Site]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.