Home Artists Posts Import Register

Content

This is a pretty lengthy post. I suppose it's justified, considering how we've been reserved lately. Some have even sent us messages, wondering if we're still working on the game, or if we intend to run away with all the money. :)

I realize people are eager to know what's going on, and I admit we might have been a bit more quiet than optimal. But things are still in an early phase, changing frequently, so giving meaningful updates often is challenging. Plus everything is very WIP, and from experience, posting WIPs is something we have grown a bit more reluctant to do, as some judge it as final (which it absolutely is not). But alas, we also realize we need to show something, to give people confidence that progress is being made.

So here we go.


YL2 Progress


A lot of things have happened since the last time we spoke about YL2 (the project name of the next engine iteration). Big decisions have been made, affecting the project as a whole, and also changing it slightly from what we originally intended. I'm absolutely certain that these changes are for the better, and will vastly improve the user experience, both for consumers and authors alike. This text will go through these decisions, and the thought processes that led to them.

Character editor

One of these decisions has to do with the character editor. Originally intended to be created later on in the development, we have changed our minds about this, and will now make it part of YL2 from the very beginning. It's something we'll keep building on each time we release a new build, but the first build will come with a character editor. This will delay the initial release a bit, but will make the character editor come out sooner than first planned.

Why this decision? We realized a lot of effort and time is being spent on reinventing the wheel each time we create a new character. Basically, so far we have always sculpted, retopologized, rigged and skinned each character individually, which admittedly does give us a great amount of control, but also costs us a lot of time. Too much time. Plus, if we invent new features, we'd have to go back and implement them into each character individually, which is simply not feasible to do in the long run. (You might have noticed that already in Yiffalicious, that older models are missing the newest features.)

Instead, we want to pour extra effort into the character editor, and develop a unified system where you are not only able to create a vast amount of different characters, but where they will also receive all new features as they are implemented. It's an obvious route to take to maximize efficiency, but that will hopefully also be appreciated by the community.

The systems we are creating are still in a very early stage, but we have so many ideas and technical insights how we could make this the best furry character editor yet. If we can pull our ideas off, you'll have great freedom in creating the kind of character you want, being able to select different sexes, blend between masculine and feminine features, in addition to controlling the fatness, muscle and skeletal proportions (not scaling, but actual, proper proportions). We also have begun sketching on systems for stylization, and have many ideas how to enable you to create truly unique characters that go beyond what other furry games offer.

One of the steps we're taking to achieving our goals is by designing an universal mesh. This mesh will be neither male or female, but rather a mix of the two, with topology than can be altered to work across many types of characters. Naturally, some parts will have to be swapped no matter what (like organs and heads). But other than that, we are confident we can develop a mesh that can take any type of deformation required. Here's a mesh prototype we've been working on for this purpose:

Below are examples of the very same topology used in different ways.


Coding side of things

Most of the coding time has been spent on creating the foundations for the new interaction systems. That includes - selection, undo/redo, properties, inspector, outliner, saving/loading, scenes, steps (similar to snapshots) and timelines (entirely new feature, explained later on).

The way we've gone about implementing these concepts this time around, is by using strict decoupling of editor state and view. The state does not know anything of what's displayed on the screen, and the view in turn does not know anything about the state. The state basically works on its own, but provides a [programming] interface that other parts of the application can interact with. Any concept existing in the the app has been defined in this manner.

Then, we have a layer of code that acts as a glue between the visual interface and the editor state, affecting the state if required, or propagating changes in the state to the view when necessary.

Properties inspector

One of our goals with YL2 was to create a context sensitive inspector, and this we have started laying out the foundations of. Rather than showing everything all at once (as in Yiffalicious), properties are displayed based on the active selection. Furthermore, you can filter properties easily by using the filter input, which updates what properties are displayed instantly as you type on the keyboard. We have also implemented systems for allowing properties to be put into as many categories or sub-categories as we like.

(NOTE! Cube objects and menu commands are obviously placeholders, used solely for testing.)


https://gfycat.com/PlushAnimatedBighorn

So far, there is no visual representation for these properties other than float sliders. In the model, everything works regardless of type, but we need to create visual interfaces for each one of the types we are going to use (strings, booleans, node states, object references etc).

Another cool thing about this property inspector is that we can reuse it for virtually anything. In Yiffalicious, we had to design individual interfaces for each property window (for example settings, audio). But now, with our new systems, it is very simple to reuse this window for any type of object, following our YL2Object architecture that all objects inherit from. In the case of changing graphics settings, all we need to do is create a class inheriting from YL2Object, add properties to it, and its properties will be displayed and filterable in the inspector (the object would have to be selected of course, something that probably will be achieved through going to Edit > Preferences > Graphics settings). It saves us time and also makes the property editing cohesive for the user, using the same window and systems for all property manipulation.

Timelines

This part of the text will explain what timelines are, and what led up to their creation.

When we started sketching on YL2, the idea was to allow for poses to be changed in each snapshot (or "step", as we're calling them now). We had a working implementation of this quite early in the development.

Later on, we got to implementing drivers. Just to make it clear - in case you don't know - a driver is basically a component that takes input from a source, and outputs it into a destination, possibly transforming the data on the way there. In Yiffalicious, drivers were used to extensively to animate expressions - in that case taking the thrusting time or depth as source, and using it to control the expression (based on a weight). This time around, we wanted to expand on this concept, and make it possible to make any slider drivable by any driver source. Drivers could be created and tweaked as desired, and sliders could be connected to these (if desired).

This was the time when a realization hit us. Wouldn't it be cool if you could actually change the pose during a step (snapshot)? To be able to have something like the head rotation feature in Yiffalicious, but across any node over the entire pose?

We instantly realized we had to get something like that going. This would open up the opportunities quite significantly - being able to basically animate the characters over the duration of a single step.

The way we were thinking of implementing this would be by defining two pose states inside a step (rather than one), and then have a slider blending between them. This slider, then, could be connected to a driver of choice, and voilá - animating poses, inside a step.

But... Then another realization hit us. Being able to only use two pose states is great for achieving a lot of effects, but what if you, for example, wanted to animate the head rotating from left to right several times during the course of a penetration? There would be no simple way to do that, having the option to blend between only two states.

So then we figured - why not let the user create as many poses as desired, that are contained within a pose container? Each pose in this container would basically work like a keyframe, with a time value of when it's used, and the actual pose. What pose is used would be decided by a slider (that could be connected to a driver), and if between poses, then they would be blended. This pose container would basically work like a variable, that is stored as part of a characters step data (and changed between them).

However, at this point, we feared that things got just a little bit too complex for the average user. There are so many concepts intersecting here, and it might be hard to grasp what's actually going on, or how to set it up. We really want to make YL2 better in every conceivable way compared to its predecessor, and that includes ease of use. Everyone should be able to set up the kind of animations that they find interesting, and enjoy the process while doing so.

Furthermore, the solution above is so incoherent. Why should only poses have a pose container as part of each step? Shouldn't any property be able to have keyframes? What if you want to match a certain expression with a certain pose? In the solution explained above, this would not be possible to do.

So we took a big step back thought about how to solve this... and we finally arrived at something we think is the best option so far.

Introducing timelines

In YL2, we are introducing a new concept that we simply like to call timelines. A timeline is just what you expect it to be - a place where you can store properties' values as keyframes over the duration of a time. If you've been animating before, you'll feel right at home.

When a property is changed in the inspector, or when a node is transformed, a keyframe will be created for the property's current value inside the active timeline. Nodes and their transforms (position, rotation, parent) are like any other property, and when altered, a keyframe will be created for them.

https://gfycat.com/PartialWhisperedCaterpillar


https://gfycat.com/WelldocumentedBraveBilby

In this way, everything is consistent across the whole app and easy to grasp. There are no special cases (as with a pose container), but rather everything is unified.

By pressing and holding down shift, while dragging the timeline handle, you can snap it to present keyframes. In the same manner, you can snap keyframes when dragging them to the timeline handle, or to other keyframes.

https://gfycat.com/SecondaryInexperiencedBorer

When a timeline reaches its end, the time starts over for that timeline. And in addition to this, keyframes are interpolated circularly, meaning you only need two keyframes to create a looping animation.

https://gfycat.com/LoneThankfulFunnelweaverspider

In this example, linear interpolation is used, but the idea is to offer catmull rom, automatic bezier and smoothed interpolations as well.

Steps (snapshots) are still around, although they themselves don't store any values anymore. Instead, they store timelines. You can have as many timelines as you like for any one step. For example, you could have one timeline that is 2 seconds long, and another one that is 1 second long. Both of them play at the same time, in this case syncing perfectly every 2 seconds. Each one can have their own keyframed properties. If two timelines inside the same step share the same property, then the last timeline will override the values.

When entering a step, a blend occurs from the previous step's end state [for its timelines] into the new one's timelines [that begin to play].

Differences from Yiffalicious

Using this timeline system, opportunities are vastly expanded, and at the same time everything is consistent and easy to grasp. But it also means things will work differently from before. Let's take the penetration mechanic as an example. In Yiffalicious, to control the penetration you would use speed, depth, and distance sliders to get the kind of thrusting you wanted. In YL2, you will instead use the timeline duration and keyframes for a thrust-hump-solver's depth value. I imagine that when such a solver is instanced, keyframes will be automatically created at time 0 with depth 0, and time 0.5 with depth 1 (time 0.5 -> 1 will be circularly interpolated back to keyframe 0). It's gonna get some getting used to for sure, but given the consistency and how you're basically free to create any kind of animation, I think this change is for the better.

I'm not sure if we'll keep drivers around. We still have them implemented in the model, but we want to make things as simple as possible for the end user by not introducing too many concepts. Relying solely on timelines and keyframes seems compelling.

(In case we weren't clear above - you won't need to animate penetration manually. Rather, you animate a penetration solver's values to achieve the kind of thrusting you want, in addition to any other properties/nodes you choose to animate.)

Total summary of our current implementation:


Undo/redo

In YL2, we're really making an effort to bring the undo/redo system more up to par with what you'd expect out of professional editing tools. Every meaningful action is tracked, and can be undone or redone, regardless of what that action is. You can even undo deleting entire scenes. (In Yiffalicious, you couldn't even undo or redo adding/deleting objects. And worse yet - if you did any of those things, history would be reset.)

In this example below, we're creating a new scene with objects and keyframes in it. Then we delete the scene. After that, we undo the whole stack of actions, and then redo them.

https://u.nya.is/jpuzar.mp4

(You may also have noticed we were selecting multiple nodes and manipulating them at the same time during the recording - something that wasn't possible in Yiffalicious.)

Style change

With the YL2 reboot, we have an opportunity to try and do things a bit differently from before. In Yiffalicious, we were pretty much striving towards realism in our environments and shading. But after playing a game known as "For honor", which pretty much is a perfect example of realistic shading with PBR, I realized this is absolutely not the kind of look we want to go for. It's cool and all, but I'm not sure if it's sexy and desirable in a furry porn app. (In case you're interested, here's a screenshot from that game.)

For YL2, we want to go for a more stylized look. Although the lighting model we're using is still realistic, assets and textures will be stylized to get something more cartoony looking akin to products such as Overwatch and Zootopia.

Down below is a scene test we did to experiment with this vision.

As you can see, it's very colorful and high contrast - not very realistic but definitely fitting for a cartoony style.

Summary

We've been very busy the last month, laying out the foundations of the interaction systems in YL2, but also trying out different ideas how to realize the character editor. Decisions have been made, taking us on another path than we originally intended, with a timeline feature implemented, and intention of working on the character editor from the very start. We have tried out different styles, and are quite certain we want to go with a more stylized look, taking inspiration from Overwatch and Zootopia.

Work on YL2 has just begun, and while we're making great strides, there are still many more left to take. Considering our ambitions with the character editor, and our decision to include it from the start, it may be some time before we see a first release. I dare not give any more estimates, as the one we gave previously turned out to be wrong (although it was mentioned to be very uncertain).

The work continues, and when we have more to share, we'll let you know. :)

- odes

Files

(No title)

Comments

Anonymous

This post goes beyond anything i expected. Thanks for sharing all of this. Though i imagine its a bit hard to understand for someone who doesn't know about software development or animation. A tl;dr would be nice. :P

Anonymous

I dig the new art style, I've always found that stylized ages much better than realistic. After reading through all this, I realize you're still iterating and a lot of things can change between now and when you release a build, but I have a few questions. 1) Will there be a database for sharing customized characters like there is for poses? 2) Will you be remaking the old models in the new character editor system? Or is that going to be up to the community? 3) Is the soft body system you mentioned in February still on the table? If so, how will it work with the new timeline system? Mostly curious if we'll see things like dynamic reactions in response to collision with other characters or the stage.

Anonymous

Holy shat guys, that is a crazy amount of work already done. Really great to see you guys prototyping and planning out the features carefully instead of going with gut feeling. I had a few questions regarding some of the features. 1. You guys talked about making sure that future characters receive new features as they get implemented. Have you guys already thought of a way to handle that issue, something like versioning or migrating the data to be compatible with the users version? 2. Custom skins are in YL1. Is it planned to be merged into the character editor or is it going to be scrapped?

yiffalicious

1) Definitely. This will be a big part of YL2, and a natural step to take considering our earlier cloud implementations. 2) The old characters will exist in one form or another, and I'm compelled to use the character editor for them, to keep everything unified. Some characters may get unique parts to make them stand out, but they will probably use the same tech/rig to reduce duplication of work. 3) Absolutely. It's one of the things I'm most excited about to get in there. I just haven't gotten so far yet. Still working on the foundations.

yiffalicious

1) Since all characters will be based on the same universal mesh and rig, any changes we make to them will be propagated to all characters. No migration required. 2) Custom skins will work differently in YL2. Instead of relying on outside applications, everything will be done inside YL2. We'll provide an easy to use system for this, where you can color the characters as desired.

Anonymous

Man, I was pretty hyped about hearing new info about YL2, and frankly? THIS IS EVEN BETTER THAN EXPECTED. AAAAAA

SexyTurian69

Sounds pretty damn awesome!

Anonymous

Nice work guys. All the planning is paying off :)

Anonymous

Glad you guys are stiving more tword less realistic environments, can't wait to see what you guys come up with! Keep up the good work!

ryu lee

I love this one, hope we get a chance to play around with this.

Ezyk Jaraad

this was the most intense post I've ever seen on Patreon.

Vincent

Would it be OK if I created a thread about your Patreon/Yiffalicious on the FutanariPalace.com forum as a sort of advertisement? I think you may stand to gain a fair amount of income from that audience, and there is no post about Yiffalicious on that site. P.S. Keep up the great work you beautiful bastards :)

WorselTheV

The level of complexity is shooting way up but worth it for the flexibility. This is going to be fun, can't wait.

Anonymous

Great as always! I love where this is heading and the amount of work that's already been done. As always keep up the great work! Don't worry about the lack of updates. You anticipated that and explained it up front. I appreciated that and hope others did too. Yet again you continue to inspire confidence in me for this project and you.

Anonymous

Thank you very much for all the hard work you guys have done. The character editor looks very promising, can't wait!

MudWolf11

I'm super hype for this. These changes sound pretty great, especially the idea that we'll have our character editor even sooner. <3

Bazzal

What an amazing birthday present!!! Thank you so much for the update on the new progress!!!!!!!!!

Razerfang

Awesome tho I wish there was a Guide for this, yeah im that much of a noob but still looks awesome and I hope to have fun with it soon :3

Cordis Eros

I gotta ask; since you mention all new features being easily implemented on all characters in the new build does that mean any and all characters can have any organ desired? Like say Elaine (or at least the YL2 version of her) could have a male organ? Or Khana? Also, having worked on adobe premiere, your time line function looks super familiar and user friendly! I can really see a lot of possibilities for it's use.

Craket

The TECH! Proud of you! Keep it up.

Anonymous

@Cordis Eros- I think you can basically make any character you want from the preset ambiguous gender model. Including altering height, weight etc. the only thing you wont be able to change about a specific character is probably what species they are.

Anonymous

Fantastic! Keep up the good work!

Anonymous

Nice and hay it looks good would like to edet some of the caritors a bit here and there I whink it is a grate step and a good idear hope that it will come out in this next moth or next.

Anonymous

nooo too bad that you abandon the idea to make great graphics, the character and the environement were so good :( now it will look like a game from bandai namco or square enix :( yl2 dowgrade on same graphic level at console peasants... and to make the game sexy and colorfull ENB exist! i already suggested it in the forum :O

yiffalicious

You'll be able to choose from male, female and herm genitalia for the character editor. Since everything is based on the same universal mesh, you could for example have a feminine character with a dick, or a masculine character with a vagina.

Dr.Stain

Good to hear. Can't wait for Maya & Bunny's update in YL2.

Anonymous

I love it! Is there any way I can help? I have lots of experience with Unity and C#.

Craket

Oh! I have to come back to ask! When regards to graphics and aesthetics, I am sort of worried but I think I know where you actually want to go with it. Yooka-Laylee a very cartoony game has this realistic lighting like in the screenshot shown. Now, i know it wont be as cartoony as yooka layle, but I think the ENVIRONMENT is a good reference for graphics and aesthetic. A good use of colours and a saturated coloured look with different material and textures (Like you have in YL1) but with more notes from yooka laylee. Kinda hate bringing up that game here but as a point of reference I think it fits perfectly.

Anonymous

I am incredibly excited for the character editor! Since there's probably no ETA of the entire project, would it be possible to release the character editor a bit sooner, perhaps to let us create characters in preparation for the real fun?

Cdub

I realize you can't set an eta but can we get a rough estimate like are we looking at months, year, or years before we see our next update?

yiffalicious

Yiffalicious 0.7.2 will likely be released within a month or two. YL2 - several months away.

Anonymous

Im assuming YL2 will have VR support as well?

yiffalicious

Eventually, yes. Too early to say if first release will have it or not. It might have.

lothkafas

Really cool!

Anonymous

Amazing work so far! It looks like you're adding in pretty much every feature I ever wanted out of this game... can't wait to try it! xD

Anonymous

Fantastic!!! Character Creator is perhaps the best idea yet!

Anonymous

I hate waiting so much. But everything is looking so good, I know it'll be worth it. ... just as long as we get good cum!

Anonymous

It gets way more difficult for new users to edit in the software i think, but it is WAY more complex then YL1 which i love. I thought the first one was a struggle to learn, but once you get a hang on it it was much easyer. I like that you guys are building it to look like adobe premier/vegas pro/flash since to me, it makes more sense what i do with a timeline then just snapshoots since im used to those softwares. Anyways, this is Goddamn awsome news and i can't wait to start experiment with YL2!

Cordis Eros

So about the base customizable mesh: I assume you'll be working on a save function so you don't have to adjust the scale controls every time you bring it in, correct? What I mean is, you load the androgynous mesh then give it breasts and rear bumpers, and then you can save that mesh you customized as a preset or something

yiffalicious

Correct - characters are saved separately. When saving and loading interactions, references are stored to the uploaded characters rather than the actual character data itself.

Anonymous

so are we getting the final update now in may? or will we have to wait for Finn and the new area?

yiffalicious

Won't make it for May, sorry. All time has gone into YL2. We really want to get something out in June though.

THe GERio

Coming Sliders for, Penis, Waist, Legs, arms or something like that ??

Anonymous

Please add a ragdoll feature.

Mircea Kitsune

Looks very pretty and amazing... great work!

Andrekilns

when and where can we download