Skip to main content

Sound Design

It was difficult this week to find time to work on the term project when there were also other more heavily weighted assignments due and a midterm to study for. I hope that I will have a bit more time after this week.

For the Living Room, we can use a looped ambient living room soundtrack I found for now because there are considerably fewer sounds expected for this environment. To accomplish this, an entity will need to be created for the purpose of sound source. This will likely be placed on the ceiling plane to have a consistent sound throughout the entire space. Additionally, some sound effects should be linked to when collisions occur between different materials.

Resources for playing sound effects on collision:



For the Warehouse, I will still need to make a looping soundtrack using the sound effects I found. I aim to make it around 60 seconds long so that it is not too repetitive. I am composing the overall sound in Audacity, but will be exporting some tracks separately as they will have sound sources emitting the sounds from different locations in the Warehouse environment while playing simultaneously. This should give a better effect in the 3D space. Evidently, some of this work will need to be coded within the A-Frame project.

A screenshot of my working file (~5hrs, some sounds needed to be cleaned up) can be seen below:



It can be listened to here:
https://drive.google.com/file/d/1o6L1WN8DI0r3sERVWzcCYiaby49b0-8M/view

In the near future, I will be helping Maxime with making a mood board for the environments and developing a colour scheme rather than just having random colours. As can be seen in the Design Comps, some improvements can be made in terms of colour and texture choices to improve cohesiveness and environmental aesthetics.

Comments

Popular posts from this blog

Sprint 2 - 3D Modelling the Environments

This week's focus has mainly been on writing the design document and preparing for the alpha prototype (~2hrs). A great majority of the written sections in our proposal is complete while a large chunk of graphics remains to be developed in the coming week. The sooner the design document is complete, the better of an idea we have in how the project will turn out in the end.  On my end, I am responsible for 3D modelling the environments that will be used in the alpha demo. These are also necessary for producing design comps. The environments will be very low poly environments using primitive shapes and basic forms to form the rooms, nothing too extravagant. Below are a few screenshots of the environments in their current state: Living Room (~3hrs) that will be played in VR and the Warehouse (~4hrs) on desktop; all modelled in Maya. Warehouse Back Side Warehouse Front Gate Warehouse Top-Down View Living Room Back View Living Room Front View Living Roo...

Sprint 4 - Alpha Presentation and Furniture

This week, the team presented our proposal for our project as well as demonstrated the alpha build. In its current state, the living room and warehouse environments are at their most primitive states and will be developed further over time. In future plans, I will have to redesign the living room to allocate more space to the user. It's currently too small and claustrophobic, which makes it difficult for a VR user to have enough building space. I spent the days prior to the presentation polishing the design comps then producing OBJ files of the environments to insert into A-Frame. I did this by going back and forth between a-frame and Maya and resizing the scene until it was the ideal size. This way, Mitchell is able to simply drag and drop the obj into the project without having to tweak the transformations (~5hrs). Table Model with UVs Chair Model with UVs Shelf Model with UVs After the presentations, I began working on modelling the 3 pieces of furniture that pl...

Controllers and Game-state Management

The two issues I worked on this past week were getting game-pad controllers working with our project (~6 hours), and general work on the game-state systems to iron out some of the kinks and add some more functionality (~3-4 hours).  Unfortunately neither of these tasks proved 100% successful due to some set backs. The game-pad controllers are so close to working, movement and look controls are fully functional, but I cannot get the Super Hands components to pick up the button events from aframe-extras.  The easiest way to see this is by looking at some code: <!-- Camera --> <a -entity id= "rig" movement-controls position= "0 0 0" > <a -entity id= "camera" camera wasd-controls= "acceleration: 125" look-controls= "pointerLockEnabled:true" position= "0 1.6 0" capture-mouse st...