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:

2,409 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…

8,126 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;
 
void…
20,704 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

6,838 views
Advertisement

Popular Blogs

shawnhar
Generalist
101 Entries
9 Followers
15 Entries
10 Followers
johnhattan
Programmer
1,277 Entries
47 Followers
ApochPiQ
Generalist
628 Entries
44 Followers
dgreen02
Generalist
338 Entries
56 Followers
Advertisement