You must be 18+ to visit this website
The content on this website is AGE RESTRICTED
Please confirm you are at least 18 years old of age. Otherwise leave the website.
I am over 18 years old
Quite Unusual profile
Quite Unusual
18+
Quite Unusual
Welcome to Quite Unusual, where we hope to create exceptional games, wondrous stories, and, of course, enjoyable characters! Our current project will be an Adventure/Dating Game, so stick around to see more!
Subscribe
Send Message

Subscription Tiers

$1
per month
Assistant

Thanks for the tip! Every little bit helps towards making our game a possibility!

  • Mentioned in game’s credits
  • Access to early builds
  • Access to Discord
0 subscribers Assistant Stature
Unlock
$5
per month
Fellow

You must be interested in making this game a reality! Thank you for your generous support.

  • Mentioned in game’s credits
  • Access to early builds
  • Voting Power
0 subscribers Fellow Stature
Unlock
$10
per month
Lecturer

Thank you for your outstanding support, and giving us the chance to make this title as excellent as we can.

  • Mentioned in game’s credits
  • Access to early builds
  • Twice the Voting Power
  • Custom Discord Role
0 subscribers Lecturer Sature
Unlock
$20
per month
Associate

Your continued support will allow the studio to stay afloat, and we thank you from the bottom of our hearts!

  • Mentioned in game’s credits
  • Access to early builds
  • 2x Voting Power
  • Special channel in Discord
  • Name will be given specialty praise in game
0 subscribers Associate Stature
Unlock
$50
per month
Professor

For the true philanthropist we know you all can be!

  • Mentioned in game’s opening credits
  • Access to early builds
  • 2x Voting Power
  • Name will be given specialty praise in game
  • Special recognition and name in Discord
0 subscribers Professor Stature
Unlock

Welcome

  • Voice in the community

Displaying posts with tag Waxworth.Reset Filter
Quite Unusual
Public post

Quite Unusual Newsletter #36

Today we bring you another issue covering the art side of our game development. We’re still chugging along with the prologue images. It’s been smooth sailing, which is good news for us, even if it doesn’t make for the most thrilling updates.

Switch worked his magic with the following:

  • Waxworth Prolouge Continuation Posing👵
  • Scene Setup💻
  • Scene Lighting & Rendering💡
  • Image Edits🖼️

Teaser Tuesday

A leaden dread settles deep within the chest, an unwelcome companion. The truth about Waxworth’s dementia looms, demanding confrontation. Each step down the dim corridor reverberates with the gravity of a harsh reality.

Comments  loading...
Like(0)
Dislike(0)
Quite Unusual
Public post

Innately curious, Mentor Waxworth quietly observes the world from her window, just like her normal self...

Comments  loading...
Like(0)
Dislike(0)
Quite Unusual
Public post

Quite Unusual Newsletter #35

We're excited to share are latest newsletter as we finally reach the point of wrestling with the transition from foundational systems code to crafting actual games and finding out hoe theory doesn't life up to practice.

The last 4 weeks were a grab bag of accompleshment in programing

Working on AIFAS

  • documented the internal working of AIFAS's vigncil system
  • added named priorities with explicit relationship to .vigncil files
  • updated the.vigncil file VScode extension
  • redid the vigncil system so the Dialogue is a type of Portrayal instead of a type of Part

Number crates:

  • now convert floats to fractions directly from the mantissa and exponent
  • impled .powi() for my fraction and fixpoint crates
  • redid .sqrt() and .pow() for my fraction crate use the method I learned impling .powi()
  • fixed some bugs in my fraction and fixpoint crates

Some misc math stuff:

  • made a rational trig replacement for atan2
  • made a function to add two quadrance together
  • made a function that finds the square number factors of a number
  • modified square number factors finder to only merge factors if the higher factor already exists

started on generic chess-type game engine:

  • made function to calc scored for squares
  • made function to generate possible moves

Some other achievements where:

  • developed a base personalities types based on 4 motivation and 3 struggles
  • made a project to help automate something in my personal life that was eating up all my time.

TeaserTuesday

Through the window's lens, Mentor Waxworth quietly observes the world, her innate curiosity ever present, seemingly unperturbed, as if everything is simply as it should be...

Alta Article

Internal routines have an integer priority that is used to determine when portrayal repeats. portrayals are sorted into buckets based on their priority then keep repeating the portrayals in the highest bucket.

my first implementation of the .vigncils file you specified the integer of the priority directly. but that means if you want to insert a priority in between two existing priority so have to go through and change all the higher/lower priorities to make room for the new one.

So to solve this instead of specifying an integer you specify an identifier for the priority and Directed Acyclic Graph of which priorities need to be before another.

You can't just use a topological sort because if the DAG doesn't restrain it to a specific ordering it will just make one up for you. so for example if you have:

A->B->C
A->D->C

you don't want to go ABDC or ADBC you want A(BD)C.

but what happens if you have

A->B->C
A->D->E->C

it can't say if B is equal to D or E So I implemented a breadth-first search starting at the nodes without any parents

but if you have something like:

A->B->C
D->C

if will put B and C at 2 then try to put C at 3 but it's already at 2, so it will fail.

So I did was to keep track of a separate chain for each node without a parent then when adding a node check if it has already been added to the other chains and if so shift the integers in the shorter chain so that the integer it wants to assign to the Node that already exists in the other chain is equal to the integer in that chain and then merge the two chains.

But then there are cases where a chain is moved back so far the it's end goes past the current so one can't just have a list of nodes that need to be added to the chain but also the depth they need to be added at.

Though I took a lot work to implement all that most of it was because I had kept adding tiny improvements and it got very crufty and I'm not a fast typist to actual enter the code took white some time. I probably spent an hour in total decide what I wanted the program to do but I spent 3 full days on it as implement my idea then realize some case where it wouldn't work. If I had known then I know now I would have rewritten it from scratch 2 or 3 times instead of just making the changes to it. but because it was so crufty it was hard to see all the changes that needed to be made.

I did rewrite it once when I painted myself into a corner with borrow checker. It was easy fix I just borrowed the stuff mutable from the start instead of borrowing immutable then reborrowing it as mutable

Comments  loading...
Like(0)
Dislike(0)
Quite Unusual
Public post

Vibate just a moment ago, Mentor Waxworth remains unresponsive after her fall.

Comments  loading...
Like(0)
Dislike(0)
Quite Unusual
Public post

Quite Unusual Newsletter #26

In this issue, we're spotlighting the artistic achievements of our virtuoso of creativity, Switch. While the four new images he created are under wraps, get a hint into what's coming up with the elements that were crafted to breathe life into his creations.

Switch dazzled the winter solstice with a triumphant display of artistic prowess with these achievements

-Bed Model 🛏️ -Scene Setup & Lighting 💡 -Prologue Wakeup Renders 🖼️ -Prologue Renders Editing 💻

TeaserTuesday

Immersed in the beauty of nature. Mentor Waxworth now lies motionless on the ground.

Comments  loading...
Like(0)
Dislike(0)
Quite Unusual
Public post

Mentor Waxworth, once vibrant with curiosity, now lies on the ground, overcome by a mysterious ailment. The fragility of life mirrored in the delicate petals she was sketching.

Comments  loading...
Like(0)
Dislike(0)

The subscription gives you:
  • Access to Creator's profile content.
  • Ability to support your Creator by contributing – one-time or recurring.
  • Means to reaching out to the Creator directly via Instant Messenger.

Creator Stats

92 posts

Goals

$0.00 of $1
per month
I'm excited to be using SubscribeStar as a way to connect with my fans. If we can reach a goal of $1 per month, it will be a clear sign that I'm on the right track and making a difference through my work.
$0.00 of $300
per month
Reaching this goal will enable us to continue making awesome games for you, at a much more effective rate. This will cover our current operational costs.
$6,930
to reach
the Goal
Out of the red. We'll have recouped our initial investment.

Other Creators

Features

The subscription gives you:
  • Access to Creator's profile content.
  • Ability to support your Creator by contributing – one-time or recurring.
  • Means to reaching out to the Creator directly via Instant Messenger.
Subscribe
This website uses cookies to improve your experience while you navigate through this website. Continue to use this website as normal if you agree to the use of cookies. View our Privacy Policy for the details. By choosing "I Accept", you consent to our use of cookies.