Monday, August 22, 2011

Rush Job

For this assignment I have to model and texture something within the next 2 days. So far I firmly believe I have shot myself in the foot.

This is with 6 hours in, I need to build a few more pipes for good measure and UV Map/Texture.

It's an interesting one because I'm trying to focus on detailing more of the specific pieces.

Currently at 12777 Faces/27153 Triangles here is "The Logging Industries New Toy."


From Blog_Uploads

Monday, August 15, 2011

Ooh man, only 1 month left of school.

Things are hectic right now, I'm currently learning particles and spending a lot of time researching the business end of the Games Industry. Updates will be short and sweet, and hopefully I'll have a lot more presentable work near the end. It's demo reel time after all!

Here's my most recent, it's an attempt at modeling a female using reference for Natalie Portman. I'm not particularly happy about the face at this stage, and plan to rebuild the feet before I UV Map and texture this. Then we'll test the animation phase!

Currently sitting at 5447 Faces/10683 Triangles. There will be some more added for the ears and feet revision. Hope you enjoy!

From Blog_Uploads

Wednesday, July 27, 2011

Getting a bit sidetracked...

So the dragon is now getting much closer to completion, but I've been spending most of my spare time working on my truck so I can have it ready to commute everyday to work in September (Graduation). Needless to say, I'm very excited.

In the last week or so I've switched from ZBrush to Mudbox due to the painting methods. Texturing is amazing in Mudbox! Beats ZBrush and Photoshop any day.

Here's two updates of my most recent work that is somewhat presentable.

The Dragon is still under production, but I'm focusing on rigging it at this moment, hoping to bring out an awesome animation for my demo reel. Unfortunately I need to remap just a few UV's to get the tail correct.

From Blog_Uploads

And now the UT3 character I've been working on. The rig is complete and functioning beautifully, but the current focus is getting a nice texture on here. I want to give this guy a nice damaged look, and try to give him a 'rebel' style. Note that these are works in progress.

From July 27, 2011

That's all I have to update at the moment, I'll show some of my other work when it gets further along. One of them is a high poly recreation of my bedroom, but it's a bit awkward trying to model every wire that I have in here. It's just about a fire hazard.

Tuesday, June 28, 2011

Drakonis Mascot in the Making?

I've been so busy with everything that I haven't really gotten around to updating the blog. For all those job seekers, it just means I spend more time producing than social networking *hint hint*.

Anyhow, with the start of a new semester I've been building up a new game concept centralized around the Chaos Theory (as per the butterfly effect), and transforming environments and events based on sanity (mechanics still being refined before programmed).

Also, I've began working on a character to test out in Unreal 3, here's a quick video loop showing the walk cycle (still having issues with IK's, may have to rebuild the rig). I know the leg is popping, but I have some other issues to deal out first.

I've made some weapons aswell, shown here. The concept art was provided from the Warhammer Online website.
From Blog_Uploads


And finally, my current progress on the Drakonis mascot. After 12 hours.

From Blog_Uploads

Friday, April 29, 2011

Ah, delays. WIP Update

So I haven't updated for a while, been working quite a bit and unfortunately don't have much to show for it.

But, I have 2 more weeks to complete this UDK level, and I've decided that the theme is Command and Conquer. Lots of work to do, probably looks a bit dirty atm, but here's the current stage.


From Blog_Uploads

Wednesday, March 30, 2011

Some beats for the retro boys.

ytcracker - sf2k10 (c&v.d demo) by ytcracker

Woke up to hear this beat. Pretty inspirational for the inner nerd ;)



Alright, so I've missed the last 3 days of school due to various (albeit stupid) reasons. In the extra time at home, I've been diving into educating myself on python and trying to lock on to an efficient work flow. It's a slow start, but things seem to be picking up as I go.

Thursday, March 24, 2011

Tank Complete

Finished the tank with a base texture, will probably redo the texture a bit better, but no time atm. Here's the current stage.

From Blog_Uploads

Tuesday, March 22, 2011

UDK GamePlay Almost Done

Here's a video of the current state of the UDK game. Hope you like it, I'll post the changes soon for those who want to know how to fix the aim.

Friday, March 18, 2011

UDK Scripting = You are WinRar (Winner)

Alright, I'm fairly new to scripting but finally picked up some tweaks today and things are definitely looking on the bright side!

So, that being said. There's a series of changes that are required to complete that 'side-scroller ' game concept that are fairly simple, but a total struggle to try and track down if you're new to this.

So essentially, we're going to start up UDK and let it all load. Start building your base level (player start, lighting, and something to stand on).

Next we're going to position the camera.

So click on "View" at the top and branch out to Browser Windows>>Actor Classes.

Once the window pops up, you'll be met with a variety of classes. (See figure 1.1)

From Tutorial Files




//Tip: Use spacebar to switch between Translate/Scale/Rotate modes in the viewport//
Create your camera actor and position/angle according to where you want it to point (typically the Player). And then hit the "K" icon on the top bar. This will open the Kismet Editor.

Now, I'm not going to get too specific into the parts you need, but be aware that if you click on an object then right click in Kismet, it shows the option "New Object var using "_Object_name_".

This creates a variable for connecting your object to nodes, but in this sense, the "Camera_Actor0" will probably be the only one you need.

So I'll just throw you a screenshot (See figure 1.2) of how you should lay out your Kismet graph to position the camera. Unfortunately, you'll have to figure out where these objects sit since I'm running out of time to compose this quicky tutorial.

From Tutorial Files




Since this is laid out you'll find that when you build and start your game, you'll have a sidescroller view. But the gun shoots terribly off kilter, your player is looking around funny, etc etc... And worst of all, they key binding is terrible!

This is composed in our scripts sets. So redirect yourself to the UDK install folder and we're going to start at:

C:\UDK\UDK-2011-01\Development\Src\UTGame

Open: UTPlayerController.uc using notepad or any text applicable application.

We're going to search for this code set. Add in the red text right after this.

function Rotator GetAdjustedAimFor( Weapon W, vector StartFireLoc )
{
local vector FireDir, HitLocation, HitNormal;
local actor BestTarget, HitActor;
local float bestAim, bestDist, MaxRange;
local rotator BaseAimRot;

return Pawn.Rotation;

This will force your mouse to no longer have input in the direction that the gun fires, it will simply fire straight from where the player's character is facing.

Next, we're going to vary the direction the player faces (in this case, directly forward).

I'm just going to copy and paste the code in the same file that you want to reference.

Where the "\\" sets have been implemented, it's simply to 'comment' out the code so it does NOT compile, but I strongly suggest you don't destroy it. Again, red text is what we add.

function UpdateRotation( float DeltaTime )
{
local rotator DeltaRot;

ClientMessage("This code is running in UTPlayerController!");

if (bDebugFreeCam)
{
// Calculate Delta to be applied on ViewRotation
//DeltaRot.Yaw = PlayerInput.aTurn;
//DeltaRot.Pitch = PlayerInput.aLookUp;
//ProcessViewRotation( DeltaTime, DebugFreeCamRot, DeltaRot );
//Rot.Yaw = 0.0;
//Rot.Pitch = 0.0;
}
else
{
//super.UpdateRotation(DeltaTime);
//Rot.Yaw = 0.0;
//Rot.Pitch = 0.0;
}
}

Whoever is reading this will probably find faults, but this is how we did it (I had a mentor assisting me and he essentially altered this section). From what I'm collecting, he canceled out all inputs.

So save this file, I suggest you keep a backup of the previous copy somewhere.


Next we're going to the directory C:\UDK\UDK-2011-01\UDKGame\Config
Time to track down the file: DefaultInput.ini

Towards the bottom of the document, you will see 2 sections. Editor Bindings and Game Keyboard/Mouse Bindings.

Find the keys and commands under the Game/Keyboard change your coordination as you please. It should be pretty easily identifiable.

Make sure to incrementally save and reload UDK to test your scripts, if you compile after every short change, it makes it easier to identify where the code has issues. Best of luck, and if there are any questions, comments or critiques I'll do my best to reply and/or fix those issues. If you want to find out how to do something, I'd be more than happy to research and share the information as I come across it. Thanks guys, and good luck on your endeavors.


Finally, here's the final screenshot of this actually working. (Figure 1.3)

From Tutorial Files





Thursday, March 17, 2011

Satisfaction

There's nothing like actually finishing something on time (without pulling an all-nighter!).

The high-poly model of the tank is complete. Still need to create some low poly geo's to transfer over the displacement/normal maps. I'm actually very happy with the current stage. Will be texturing and uploading as it comes up.

From Blog_Uploads


As per the ZBrush midterm project. I didn't get around to finish sculpting the hand in time or adding some extra details. But here's what I handed in, maybe I'll come back to this later. :P

From Blog_Uploads


From Blog_Uploads


From Blog_Uploads


From Blog_Uploads



Haha, big update for today. Hope you enjoyed guys.

Monday, March 14, 2011

WIP -- Bust of Character

Just an update, I need this done in the next 36 hours, and will probably only have a little bit of time tomorrow night to work on it. Here's hoping for the best.

Oh, I was playing around with rendering layers in Photoshop, came out with a pretty cool comic book look.

From Blog_Uploads



Edit:

here's the completed version.
From Blog_Uploads




didn't really get around to that last hand..

ZBrush Assignment

Alright, so I really underestimated the requirements on this project. The teacher created a base model and we had to play with brushes to detail and texture this guy. I ended up waiting until last minute and I'm not exactly happy with the current state, but I don't have enough time to continue enhancing. So without further adew, here's the Frog from Chrono Trigger. Credits for model go to Chris Holbrow.

From Blog_Uploads


Also, I haven't gotten back to that Tank, will be resuming it shortly.

Thursday, March 10, 2011

Maya: Ambient Occlusion

For those guys that are just learning Maya, I stumbled upon this tutorial involving your hypershade, and accomplishing that awesome ambient occlusion look.

http://www.game-artist.net/forums/spotlight-articles/1317-tutorial-ambient-occlusion-maya-alchemist101.html

This is great for getting an idea of what you want for baking light maps to textures. Afterwards, just throw it on as a layer in your photoshop texture.

Hope this helps a few people out there. Props to the creator.

Lighting/Texturing Midterm

Just finished our midterm for the lighting and texturing class. The teacher threw us a ship he modelled and told us to utilize procedural and photoshop textures. Anyhow, I spent about 1 1/2 hours pissing around with it. Here's the result.

From Blog_Uploads

Wednesday, March 9, 2011

Sketching with ZBrush

Created this using the sketch tool in ZBrush. Just playing with new concepts.


Time Approx: 10 minutes.

From Blog_Uploads

Tuesday, March 8, 2011

Learning UDK

Alright, so we've had about 5 classes dealing with the Unreal Development Kit (UDK). Covering basically importing of static meshes, constructing maps, materials and basic multiplayer level creation.

We've learned that our final projects will be to either:
a) Construct a map that demonstrates good
gameplay dynamics.
b) Construct a non-playable map that
demonstrates artistic ability.

I specifically asked, "How often do you get both in one package?"
The response was "Never, considering the time frame. Focus on one attribute or you might not finish."

I plan to challenge that, so I'm creating a 3d/sidescroller.

Currently, I'm just playing with general technicalities to get an idea of what I need to know, and a sidescroller was strongly recommended against for the difficulties (in UDK atleast).
As it stands, I've figured out how to create the sidescroller view and lock the players view to [forward]. The problem I'm trying to beat is that the crosshair will point directly at the player, shooting the wall behind him, instead of forward.

From Blog_Uploads


So, I'll be powering at this tonight and seeing if I can beat this little bump, then move on to aligning the controls to see if I can give it a good feel.

Will update, wish me luck.

Thursday, March 3, 2011

Mammoth Tank Project

Hey, now have to work on a vehicle. So I'm modelling a detailed Mammoth Tank from the Command and Conquer Series, Yeaaaah. Here's the current progress.


From Blog_Uploads


Edit: Finished the treads, here it is. i think that's all we're getting in today.


From Blog_Uploads

Tuesday, March 1, 2011

Experimenting

Got into a car accident this morning totalling the Suburban. Guess I'm staying home today.

In that time frame I started playing with the physics nodes in Maya and came up with a pretty cool mix between the nCloth & Ruins plugins. Here's a small animation of what I've been playing with.


ncloth ruins test by ~XDrako on deviantART

Monday, February 28, 2011

Current WIP

Alright, so this is what I've been working on for the evening. My teacher modeled this, the assignment was to texture it in ZBrush. Here's the finished model, I'm going to play with it a bit more though. Time to rig :P.

Finally..

Hey,

I'm the new guy in town.

My name is Brian Frazer, I'm 20 years old and currently attending the 3D Animation & Game Design course at the Pacific Audio Visual Institute in beautiful Vancouver, BC.

At this stage, I feel as though I've developed my skills enough to begin freelancing. Big problem though is that nobody's going to hire some guy off the street who says he's capable of design with no portfolio.

Being the first post, I'm trying to put this like a sell sheet, should be more personality in the future posts. Anyhow, I began playing with digital art in 2003 (when I started high school), a heavy influence would be from a friend of mine, Nathaniel Sabanski: a talented programmer/web designer who had a passion for video games and introduced me to a whole new world.

I played with Wings3d for 5 years as an on/off hobby (as you would probably figure out if you saw it) and then lost interest, not thinking of it in my future. Needless to say, an apprenticeship in Electrical Contracting, Fabrication, Gas Fitting and eventually running my body down to the ground, I strayed back into the 3d scene.

It's pretty cool coming into a 3d realm and realizing that many of the things to be created, you have created in real life. I plan to use that knowledge to make me an asset to anyone and everyone willing to give me a chance to prove myself.

Anyhow,
I'll be uploading my works and progression as time goes on, hope you enjoy.

-Brian Frazer