Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.
Resource icon

Himeko Sutori (UE3 turn based 100+ unit tactical JRPG)

Aside from being what looks to be a phenomenal game, I'd like to say thank you for continuing to be an inspiration for my own project. Good to see success stories like this, and I'll be sure to do a Let's Play when the full game releases :)
 
Here is this month's video update showing off the alpha test campaign:
http://www.youtube.com/watch?v=0_OpHVbpphc
There we have some interactive NPCs, transitions from town to world map and back, combat, level-ups, new equipment, new music, new combat map, new enemies, and some new bugs. Such is gamedev.
 
That town looks amazing. I particularly like the way the road looks, but I'm not so keen about it blending into the surrounding soft terrain. I'm very impressed, it looks like you're really getting a good look out of your chosen style.

I'm still rather distracted by your world-aligned sprites, the surrounding ambient shadows improves them loads by adding depth and the lower camera angle in the town helps. Have you tried a lower camera angle during the battles to see how that looks?
 
Thanks for the feedback! Let me try the roads with more defined borders and we'll see how it looks.

Yeah, the sprites have been and maybe always will be a challenge. I'll keep working on it though. Maybe I can still improve it. I too like the SSAO. It adds some depth to the sprites like shadows did, but some people said that actual shadows just looked odd. I can try lowering the camera angle some more, but of course that increases the likelihood that the camera will clip into things. The world map camera changes its angle based on zoom. I think the battle camera works the same way. But I'll go work on that and see if I can get the camera angle to look better.
 
I'm working on a playable test campaign right now. It's going really well so far. I have a few more bugs to fix and I'd like to add some more content. But now that I have all of the building blocks in place, I think I can add content much faster.

WorldMapArmies.jpg


EmiTalking.jpg


AttackBridge.jpg


ForestNight.jpg


ForestDay.jpg


Skeletons.jpg
 
So the lower camera angle works better for the sprites, which have more of a side-on perspective. But then the camera has a tendency to collide into buildings and stuff. Everything is a trade-off I guess. I think the variable camera angle works well in exploration mode and the world map. I still need to implement it in the battle camera.

I think the battle maps could use some god-ray effects. And at night, maybe I should put in some fireflies. And of course the ground could always use a little more variation.

UE3 doesn't do true isometric camera modes, and I haven't figured out a way to draw screen-aligned sprites properly occluded by objects on the screen. I had been trying to simulate the effect with distant cameras and narrow fields of view. But with the distant camera, I saw a lot of z-fighting and other issues. However, I recently figured out how to adjust the precise-depth distance dynamically, which lets me use the precise depth much more efficiently. Maybe I should try moving the camera out even farther now that I don't have to worry about z-fighting, and that could improve the off-putting semi-world-aligned sprites.

I have some curb meshes that I could place as a boundary around the paving stones. I think it looked pretty good, but manually placing curbs is time-consuming and mind-numbing. That's one of those tasks that I think if I had a big team, I would have someone work on placing them programatically.
 
The latest iteration of Sunrise Falls, the starting town:
Sunrise_Falls.jpg


When you first meet him, the girls' father is too busy to talk to you. But if you listen in on him and his guest, you'll get some information on what's going on in the world.
Sunrise_FathersStudy.jpg


Your first task involves checking out some things around town. This will get you familiar with the controls and will provide some plot exposition.
Sunrise_Tower.jpg


Everyone has told you to stay away from the city's world gate, but what you do is up to you.
Sunrise_Gate.jpg


You should be able to win your first battle, but if you're not careful you can lose your dog and fairy companions this early in the game.
Sunrise_Battle_2.jpg


After the battle, the shopkeeper gives you thanks, supplies, and a tip for playing the game.
Sunrise_AfterBattle.jpg


I still need to add some NPCs to the tavern. This is where you'll recruit a few more party members before heading out of town.
Sunrise_Tavern.jpg
 
i feel like the textures should be low res and nearest neighbour
or at least perhaps for the buildings, they look a bit too hd compared to the cast

i think artistic cohesion is more important than quality from a gameplay experience point of view
 
Emissive masks on character sprites
SeveralMagicWeapons.jpg

I wanted to introduce magical weapons and give them some sort of visual indicator that they aren't just regular weapons. The weapons already had textures for RGB and opacity. Adding a glow mask should have required adding another texture, which I didn't want to do. So instead I messed with how the material interprets the alpha channel, which now serves double duty as both the opacity mask and the emissive mask. The glow itself is very simple: a tiling cloud texture at different scales, one panning up-left and the other panning up-right, multiplied together, used as the alpha to interpolate between two colors.

Reassembling my sprite material (which is basically a lot of textures layered in different orders depending on camera direction and character direction) in order to layer the glow mask properly ended up being a large undertaking. But I think the effect turned out nicely.

New pumpkinhead character
Pumpkinheads.jpg

An RPG just feels like it needs more enemies than I currently have. These pumpkinhead guys start with the Strawman character class and can unlock the Scarecrow class. They use scythes and sickles, deal high damage, and have low defense. All of their speech consists of lines from the Hollow Men by T. S. Eliot. The poem itself is a little unsettling. Having a scarecrow recite relevant lines from it during combat is even more unsettling.

New fire and lighting effects
NewFire.jpg

Himeko Sutori's fire used to consist of flipbooks from a purchased asset pack. I'm replacing most or all instances of those fires with procedural fire, which looks a lot better IMHO. I made a jagged shape with a yellow-orange-red color ramp in After Effects. I multiply that by a panning yellow-black-red noise pattern. And then I pan a different noise pattern and add it to the texture coordinates, and I get a beautiful shimmering, flickering, dancing fire.

I had been avoiding dynamic lights for a long time due to performance concerns, but eventually I reached a point where I just could not achieve the desired effect without them. I tried out some dynamic lights and realized that in my target hardware requirements, a couple of dynamic lights here and there won't hurt performance.

New town
Boreland.jpg

I've realized that I really prefer the aesthetics of a fixed camera position. Whether fixed to world space, or fixed relative to the character, I like the way it looks and I like the simplified level design. So in large open areas like the world map, I'll allow camera movement. And during combat I'll allow camera movement. But just about anywhere else, I think I'm going to keep a fixed camera. The fixed camera works really well in places like this town. This level just wouldn't work with a spinning camera.

This new town served several purposes for me. It let me try out a new camera mode. It also changes the pacing of the first chapter and gives me a place to introduce crafting stations.

And of course I had to add crafting materials and recipes, which was really time-consuming, but not as interesting as any of this other stuff.
 
Desert stuff done in July:

OasisWorldMap.jpg


OasisNoNPCsYet.jpg


MummyBattle.jpg


ScrapperArmy.jpg


ScrapyardNoNPCsYet.jpg


Still a lot to do. Sometimes I think I'll never finish it. But I am making progress at least--progress towards completion I hope.
 
Thanks Xilef! That's definitely encouraging to hear.

I've been working on another desert town. The domes were kind of fun to make. I made a lot of use of Photoshop's polar coordinates filter to wrap a tiling texture around a circle. The resolution is actually pretty high, but they're blurry because of the camera's depth of field, which is centered roughly on where the player character is.

Ramliyah1.jpg

Ramliyah2.jpg
 
I tried out a new development philosophy this month. Instead of trying to deliver small, highly polished sections of the game, I tried blocking out a large section of the game with the intention to go back and add more detail later. Here's some of what I did in October.

When we last saw our heroes, they were on the other side of this portal.
HS_ShadowlandPyramidInterior.jpg


Out of the portal, they must trek through the Shadowlands again.
HS_Shadowlands_PyramidGate.jpg


Their immediate destination is South Point Crossing.
HS_SouthPointShadowlands.jpg


Through the World Gate at South Point Crossing, you're in an entirely new environment.
HS_SouthPointCrossing.jpg


This is the world map, quite a different place from the desert map.
HS_SnowWorldMap.jpg


Eventually you'll get to the Icy Reach. From here you'll launch your assault on the Scholars of Candle and Sword.
HS_IcyReach_Sunset.jpg


And for fun, here's some of the higher-tier equipment I've been working on. It's fun getting into new, more fantastical designs, instead of the plainer, more realistic lower-tier stuff I had been working on before.
HS_HigherTierEquipment.jpg
 
Nathaniel3W":2yzg5bk0 said:
I tried out a new development philosophy this month. Instead of trying to deliver small, highly polished sections of the game, I tried blocking out a large section of the game with the intention to go back and add more detail later.
This is a muuuuuch better philosophy and it's what pretty much ever game that was ever delivered "on time" did. I tend to point to the idea of "make the beginning and the end first then fill in the middle" - what this means is fill in the middle and then go over and polish it up later on.

Pretty much all AAA 3D games block out the world in some kind of "orange" map or similar and get the event triggers there and the enemy placement and such before handing off to an art team to go ahead and work their magic on the thing. The mindset of people using RPG Maker I've found has traditionally been "build the game linearly" which involves spending hours cramming crap into the first map the player sees until it's left with a 7 tile walk-able area filled with busy visual features that only get appreciated once; it's much smarter to get everything "done" and then apply detail afterwards.

After writing all that, as usual I'm going to say; what you've got looks really fantastic. There's a couple things that are off, but they're minor technicalities. You've got great environments.
 
Thanks Xilef. It's reassuring to hear from a veteran developer that I'm taking the right approach. And thanks for the compliments. It means a lot to me. Remember those suggestions for improvement though. In a couple of months I'm going to revisit all these areas and make some changes.
 
More screenshots from the new areas. I'm almost done adding new regions. Next I need to fill in the detail to what I've already made.

We left our heroes in the Icy Reach. This month I added building interiors to the city.
IcyReachThroneRoom.jpg


This is the library at the Icy Reach. There's a nifty camera animation that follows your character as you go up and down the stairs. The floors also appear and disappear as you go up and down.
IcyReachLibrary.jpg


When you're done in the Icy Reach, it's time to go through the next world gate.
IcyReachWorldGate.jpg


And once again you're in the Shadowlands.
CaveWorldGate.jpg


The Shadowlands are more dangerous than ever.
LavaWorldMap.jpg


At Utakawa Gate Outpost you can return to Yamatai lands.
UtakawaOutpostWorldMap.jpg


Past Utakawa Gate, you're in Utakawa, in the Yamatai Islands. These Japanese building meshes were really annoying to fix and import into the game. I spent way too much time on that.
UtakawaSunrise.jpg


This is the Yamatai world map.
YamataiWorldMap.jpg


The last regions, not shown here, are the Northern Shores, Candle and Sword Keep, and the Crypt of the Weeping God. And a few towns. In addition to that I need to add a bunch of battle maps, enemy encounters, NPCs, and other things to populate the empty cities and world maps. After that I'll go and script the story cutscenes to give some context to why you're going to these places and killing the people you find there.
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top