Search found 1812 matches
- Mon Jun 20, 2022 7:34 pm
- Forum: General discussion
- Topic: Help with aiming from one vec3 to another
- Replies: 3
- Views: 95
Re: Help with aiming from one vec3 to another
Hi Ats, I get why there is no roll, but I don't see where the negative atan2 yaw is coming from It depends on which axis of your line / model you want to point at the target. The calculations are just simple pythagorean theorem in 2D .. how to apply the results in 3D ( rotation ) is down to your set...
- Mon Jun 20, 2022 1:09 pm
- Forum: General discussion
- Topic: Help with aiming from one vec3 to another
- Replies: 3
- Views: 95
Re: Help with aiming from one vec3 to another
Hi Ats, Where do I mess up? It depends a little on your specific situation and the type of result you're after ... but let's say you want a floor-mounted turret to track a target then you only need pitch & yaw. Here's a example: <?xml version="1.0" encoding="iso-8859-1" ?> <Z...
- Sun Jun 12, 2022 9:34 pm
- Forum: General discussion
- Topic: Velocity problem with "childrens"
- Replies: 2
- Views: 56
Re: Velocity problem with "childrens"
Hi Ats, My problem is that with this little formula, the smoke velocity should regain the explosion velocity and continue it's way out of the screen with the little dot, but instead, it slows down to zero, and I don't understand why It's because when you spawn a clone that contains a array in its De...
- Wed Jun 08, 2022 10:31 am
- Forum: General discussion
- Topic: Cubemap?
- Replies: 2
- Views: 65
Re: Cubemap?
Hej Ville, Someone on FL Studio forums asked how to use a cubemap in ZGE. I remember seeing this but when I search the ZGE forums I only find mentions of it but no project. Can't seem to find it either :P Maybe Kjell happen to have an example lying around? Depends a little on what this person means ...
- Mon May 23, 2022 7:37 am
- Forum: Tips'n'Tricks
- Topic: QOI
- Replies: 3
- Views: 209
Re: QOI
Hej Ville, What kind of compression ratio do you get for the included images? It varies from situation to situation, but in this case the original PNG images were 59228 bytes total, while the QOI images are only 36970 bytes. Due to the limited color palette & large number of masked pixels most o...
- Sun May 22, 2022 9:01 pm
- Forum: Tips'n'Tricks
- Topic: QOI
- Replies: 3
- Views: 209
QOI
8) Attached is a QOI decoder including a simple demo that loads a external QOI image containing a single frame of the selected fighter into a texture. Obviously this makes more sense when the images you're loading are a lot bigger than in this example, but the approach would remain the exact same. h...
- Tue Apr 12, 2022 4:30 pm
- Forum: General discussion
- Topic: Another simple question about basic trigonomety
- Replies: 2
- Views: 140
Re: Another simple question about basic trigonomety
Hi jinxtengu, I wanted to create a model that has 8 directions of animation depending on it's movements, so the most obvious comparison to what I want to implement would be the ghosts from a game like the arcade version of gauntlet. I understand the reference, but do keep in mind that Gauntlet doesn...
- Wed Mar 16, 2022 6:59 pm
- Forum: General discussion
- Topic: Irregular sprite overlapping area
- Replies: 4
- Views: 289
Re: Irregular sprite overlapping area
Hi rrTea, Is this possible to do in ZGE without using OpenGL calls? Sure. The only thing that is a little cumbersome is the fact that you can't access image data directly, so you need to copy the alpha channel of your image / spritesheet to a array ( using a BitmapExpression ) .. and if you want to ...
- Sat Mar 05, 2022 2:35 pm
- Forum: Bug reports
- Topic: AudioMixer resets when loading the project
- Replies: 8
- Views: 682
Re: AudioMixer resets when loading the project
Hi Ats, I'm using Chanel 2 and 3, but when I save the project, leave ZGE, and come back to it later, extra channels 2 and 3 are deactivated. Strange .. i just tried this to double-check and it works just fine for me. I can't set all manually at the start of the game either Also weird .. i initially ...
- Fri Mar 04, 2022 12:49 pm
- Forum: General discussion
- Topic: Exporting images from ZGE
- Replies: 17
- Views: 16017
Re: Exporting images from ZGE
Hi Ats, Maybe it can be optimized, as I didn't know any another way to store the magical sentence as bytes at the end of the file. You could do something like this: <?xml version="1.0" encoding="iso-8859-1" ?> <ZApplication Name="App" Caption="ZGameEditor applicati...
- Sun Feb 27, 2022 10:47 pm
- Forum: General discussion
- Topic: Questions about ES2/GL3 shaders
- Replies: 76
- Views: 18254
Re: Questions about ES2/GL3 shaders
Hi Ats, I tried to send the Y position of the model to the shader, using gl_Position.y -= modelPosition[0][1] , but it's not working. That doesn't work because you're transforming screen-space coordinates. You need to transform the vertices before applying the view & projection matrices. Is it p...
- Thu Feb 24, 2022 11:43 am
- Forum: General discussion
- Topic: Writing and Reading
- Replies: 4
- Views: 4568
Re: Writing and Reading
Hi Zakk, I am trying a very simple exercise of placing a numerical figure in a txt file, say 10. Then I just need to get this file read and the number be displayed on screen. Since there's no way to write a string to a file i'd recommend using a byte array instead ( and do the string conversion your...
- Fri Feb 18, 2022 5:21 pm
- Forum: General discussion
- Topic: How to use the ZGE-Light component?
- Replies: 6
- Views: 637
Re: How to use the ZGE-Light component?
Hi Andreas, Sorry that I experiment with it .. probably with to few understanding .. but why in this project gets the Light Color overwritten by the Scene-Material Color? It doesn't. When you for example change SceneMaterial.Color from white into yellow the scene ( box & floor ) appears yellow b...
- Fri Feb 18, 2022 12:11 pm
- Forum: General discussion
- Topic: How to use the ZGE-Light component?
- Replies: 6
- Views: 637
Re: How to use the ZGE-Light component?
Hi Andreas, So lights by itself are invisible objects and the in the example attached nodes can be used to visualize them. Yea, i just added the "nodes" so it's easier to understand what's going on. Can a spot-light effect like in a theatre with a sharp radial illumnination on an object be...
- Wed Feb 16, 2022 3:10 pm
- Forum: General discussion
- Topic: How to use the ZGE-Light component?
- Replies: 6
- Views: 637
Re: How to use the ZGE-Light component?
Hi Andreas, Can someone demonstrate the usage? Here's a simple demonstration of a white cube being lit by 3 differently colored point lights ( red, green and blue ). <?xml version="1.0" encoding="iso-8859-1" ?> <ZApplication Name="App" Caption="ZGameEditor applicat...