Search found 2274 matches

by VilleK
Mon Feb 18, 2008 12:47 pm
Forum: General discussion
Topic: Greatings, Procedural Content Creation,. .
Replies: 1
Views: 5246

Werkzeug is a very impressive tool, it is one of my main inspirations for making ZGameEditor in the first place. I'm not too happy with the user interface in Werkzeug though. I want applications to be as intuitive as possible to use, ideally so that no tutorials or documentation are needed. And unfo...
by VilleK
Sun Feb 03, 2008 2:09 pm
Forum: Releases
Topic: ZGameEditor source code released
Replies: 0
Views: 16363

ZGameEditor source code released

The full source code for ZGameEditor is now available from the Download page!
by VilleK
Fri Jan 18, 2008 5:11 pm
Forum: General discussion
Topic: 3D Sound Feature (Win32)
Replies: 2
Views: 5635

Thanks for those links, they look interesting! Hopefully they do not add too much in size to exe-files.

ZGE is getting close to becoming open source. Then it will be easy for other developers to try integrating other libraries too.
by VilleK
Wed Dec 12, 2007 8:05 pm
Forum: Releases
Topic: ZGameEditor 1.7.1: Bugfixes
Replies: 0
Views: 15861

ZGameEditor 1.7.1: Bugfixes

Changes in 1.7.1 version: * Fixed: The collision code that FpsDemo make use of contained a bug which could make the player get stuck in walls. * Fixed: CleanseCube-demo did not work on Linux and Osx because of a bug in MeshCube. Download from here: http://www.zgameeditor.org/index.php/Main/Download
by VilleK
Thu Nov 01, 2007 6:30 pm
Forum: Your projects
Topic: 3D breakout
Replies: 1
Views: 5309

Hey Kattle this looks promising!

Hope you finish it (and still manage your college studies ;) ) !
by VilleK
Thu Nov 01, 2007 5:00 pm
Forum: Releases
Topic: ZGameEditor 1.7.0: FPS Demo and cross-platform runtime
Replies: 0
Views: 18558

ZGameEditor 1.7.0: FPS Demo and cross-platform runtime

Changes in 1.7.0 version: * New sample project: FPSDemo demonstrates how to create a 3D game. * New feature: ZGameEditor now has a cross-platform runtime engine: "Make your projects run under Linux and Mac OS X" . * Improved: 3D-collision new CollisionStyle "Box3D". Check out the...
by VilleK
Tue Oct 30, 2007 1:19 pm
Forum: General discussion
Topic: BUG!!! Or something very similar.... :D
Replies: 1
Views: 4598

Yep this is a bug alright :) You are correct in guessing that ZGE draws objects in the order of their categories, and in spawn-order for each category. In 2d-games this has not been a problem yet but for 3d-games it quickly becomes insufficient. The correct way is to sort in z-order before rendering...
by VilleK
Mon Oct 29, 2007 12:39 pm
Forum: General discussion
Topic: question about vertex
Replies: 3
Views: 6318

should i be able to store a value used in the shader code in a variable, and use that value in other places like conditions? I don't believe shaders can be used that way. Shader-code run in parallell for many pixels/vertices at a time, so you cannot calculate things like most-left vertex X. Also th...
by VilleK
Sat Oct 27, 2007 2:38 pm
Forum: General discussion
Topic: question about vertex
Replies: 3
Views: 6318

Re: question about vertex

Is there any way to check if a vertex of a model is entering an area? Something like the V.Z in "MeshExpression" EG: if i have a rotating cube, how can i be sure it has touched a wall? If i could get X,Y and Z coordinates of every vertex i could easily do this... :/ You would need the tra...
by VilleK
Sun Oct 21, 2007 3:31 pm
Forum: General discussion
Topic: New forum: Your projects
Replies: 0
Views: 5969

New forum: Your projects

I've created a "Your projects" forum and move the topics that have screenshots or zgeproj-files attachments to the new forum.

Your projects

Please go ahead and post your stuff there, it is fun to see how ZGE is used!
by VilleK
Thu Oct 18, 2007 3:17 pm
Forum: General discussion
Topic: Feature requests?
Replies: 65
Views: 80610

Ah ok you mean a normal multi-dimensional array.

A forum-group for project showcase is a good idea! I will set it up soon so you can post screenshots :wink:

edit: Ok "Your projects" is created!
by VilleK
Wed Oct 17, 2007 1:57 pm
Forum: General discussion
Topic: Feature requests?
Replies: 65
Views: 80610

1. Arrays. I agree that this is very much needed :). I was thinking about rewriting the scripting to support many more language features such as arrays, local variables, loops etc. But this will take a long time. Maybe I will find a way to make arrays separately. About making a breakout-clone: the o...
by VilleK
Tue Oct 09, 2007 8:28 am
Forum: General discussion
Topic: Welcome
Replies: 16
Views: 47844

Re: New Member

Hi and welcome Guna, Thanks for the supportive comments! i) Can we sell to people the games created using ZGE? Yes. ii) If it is free, do we need to show your info in this game? Yes, at the minimum please put a link to ZGE-website in an readme-file with your game. iii) Do we need to pay royalty? No,...
by VilleK
Mon Oct 01, 2007 2:21 pm
Forum: Releases
Topic: ZGameEditor 1.6.0: Sampled audio import and playback
Replies: 0
Views: 18402

ZGameEditor 1.6.0: Sampled audio import and playback

Changes in 1.6.0 version: * New feature: ZGameEditor now supports import and playback of sampled audio files! Check out the new properties on the Sound-component "Sample playback properties" . * New feature: 3D-collision between models. Check out the updated documentation for Model-compone...
by VilleK
Wed Sep 26, 2007 4:15 pm
Forum: General discussion
Topic: Feature requests?
Replies: 65
Views: 80610

Hi Kattle87,

Good suggestions. I promise next release will have at least sphere vs sphere collision tests.

So on the models you want 3d-collision tests you set a new property:
Model1.CollisionStyle=Sphere3D

And CollisionBounds will then only use one value: the radius. Just as you suggest.