My OpenGL and WebGL Examples

0 comments
6 entries
Advertisement
8Observer8
July 24, 2023
Sprite in SFML style using FreeTexturePacker, pure WebGL 1.0, and JavaScript

This example loads sprites from the FreeTexturePacker sprite sheet and uses a sprite in SFML style

Playgrounds:

3,689 views
8Observer8
May 29, 2023
The simplest multiplayer using WebSockets and pure WebGL 1.0 with animation from Resident Evil

I implemented the simplest multiplayer using WebSockets (package ws - npm) and Node.js. I send keyboard input to the server, which relays it to other clients. Used by WebGL 1.0, glMatrix and OimoPhysics. Extracted original models, textures and animations using RE1MV. Created a non-skinned skel…

9,456 views
8Observer8
February 09, 2023
Five-pointed Star with WebGL and JavaScript

Playground: https://plnkr.co/edit/W49ndxcQemMgkAoP

My Video: 

assets/shaders/default.vert

attribute vec2 aPosition;
uniform mat4 uMvpMatrix;
 
void main() {
    gl_Position = uMvpMatrix * vec4(aPosition, 0.0, 1.0);
}

assets/shaders/default.frag

precision mediump float;
uniform vec3 uColor;
 
vo…
22,050 views
8Observer8
July 19, 2022
Demo of Jill's Movement with Ammo.js and WebGL

Demo of Jill's Movement with Ammo.js and WebGL

Source code of 3rd person controller with Ammo.js and WebGL

Playground of 3rd person controller

8,021 views
Advertisement

Popular Blogs

shawnhar
Generalist
101 Entries
14 Followers
klg71
Generalist
56 Entries
2 Followers
ApochPiQ
Generalist
628 Entries
45 Followers
15 Entries
14 Followers
johnhattan
Programmer
1,277 Entries
50 Followers
Advertisement