Search found 7 matches

by Grigor The Ox
Wed Apr 02, 2008 9:46 am
Forum: Project Announcements
Topic: Dungeoneer!
Replies: 57
Views: 7420

Was just looking at blender tutorials when i found this.
http://www.youtube.com/watch?v=zrczZqCcthg&NR=1
Look familiar?
by Grigor The Ox
Sat Dec 09, 2006 7:30 am
Forum: Irrlicht.NET
Topic: 2D in C#
Replies: 4
Views: 2268

Backslashes are interpreted as escape characters, such as \n for newline. In order to store an actual blackslash in a string you can either escape it (use double) or the following:
Yeah I figured that out last night. My mistake.
by Grigor The Ox
Fri Dec 08, 2006 5:46 am
Forum: Irrlicht.NET
Topic: [Help] How to install Irrlicht in VB.Net
Replies: 8
Views: 3326

[WARNING: DO NOT GO TO THE SITE ABOVE. IT CONTAINS PORNOGRAPHIC MATERIAL THAT MAY BE HARMFUL TO YOUR PC.]

I came to this conclussion after googling the site and not actually going to it.
If I am mistaken I am sorry. There were no admins or moderators on at this time.

-The Ox Man
by Grigor The Ox
Fri Dec 08, 2006 5:10 am
Forum: Irrlicht.NET
Topic: 2D in C#
Replies: 4
Views: 2268

The example in the example.NET folder for Irllicht 1.2 works fine but you have to change this line... [C#] string path = string.Empty; ...to the location of the irrlicht media folder. For example: [C#] string path = "C:\\Documents and Settings\\PC\\Desktop\\irrlicht-1.2\\media\\"; I don't ...
by Grigor The Ox
Fri Dec 08, 2006 4:47 am
Forum: Irrlicht.NET
Topic: [SOLVED] [C#] Need help loading DeleD maps
Replies: 4
Views: 2026

Thank you bgsteffens, you were right. I didn't really know what I was doing. I now can see the level and there is nothing wrong with it.(Besides lighting, but I'll fix that.)

-The Ox Man
by Grigor The Ox
Thu Dec 07, 2006 9:38 pm
Forum: Irrlicht.NET
Topic: [SOLVED] [C#] Need help loading DeleD maps
Replies: 4
Views: 2026

How would I go about doing this. I looked at the .NET documentation and I couldn't find anything satisfactory. Please know this is the first engine that I am working with and I don't know how to do alot of things right now. Thanks for the help though anteater, but unluckily I need help doing your so...
by Grigor The Ox
Thu Dec 07, 2006 9:35 am
Forum: Irrlicht.NET
Topic: [SOLVED] [C#] Need help loading DeleD maps
Replies: 4
Views: 2026

[SOLVED] [C#] Need help loading DeleD maps

I need help loading a simple map i made with DeleD. My code is based off of the .NET tutorial for loading the Quake 3 level. All of my meshes and textures load correctly and the console displays nothing is wrong but all I get is a grey screen. Here is my code... [C#] using System; using System.Colle...