Age Verification
This website contains age-restricted material including nudity and explicit content. By entering, you confirm being at least 18 years old or the age of majority in the jurisdiction you are accessing the website from.
I am 18+ or older - Enter
I am under 18 - Exit
Our parental controls page explains how you can easily block access to this site.

Last posts - Page 390

  Forum

Wyldanimal
MODERATOR
Joined in Mar 2008
17120 post(s)

Discussions for Scenes for Version 1.2.X Fullscreen Mode here

Everything about iStripper
February 6, 2022, 5044 answers
for the GL_ES test Scene
Here is the Shader


#version 140
// for iStripper by WyldAnimal
// ##################### GL_ES_TEST ##############################
//
// lets test if we are using GL_ES
// the color of the background will be set Green if Yes, Red if not
//
#ifdef GL_ES // If it is GL_ES then
vec3 Bkg_Color = vec3(0.,1.,0.) ; // make the background GREEN
#endif
//
#ifndef GL_ES // If it is NOT GL_ES then
vec3 Bkg_Color = vec3(1.,0.,0.) ; // make the background RED
#endif
//
// ################### END GL_ES_TEST ###########################
void main(void)
{
gl_FragColor.rgb = Bkg_Color; // solid
gl_FragColor.a = 1.0;
}

and Here is the Scene


// GL_ES test Scene by: WyldAnimal
// place in same Scene folder as the original
// Single Model in front of solid background
texture {
id: Logo
source: Small/iStripper.png
}
//####################### GL_ES_TEST ############################
framebuffer { // hi resolution display
// size = 1920 x 1080 divided by 1 = 1920 x 1080
id: background
size: 1920, 1080 // Size
quad {
size: 1920, 1080 // Size same as above
hotspot: 0.0, 0.0
shader: fragment, Shaders/GL_ES.fsh
}
}
//#################################################################
clip {
border: 2 //WA: reduce border
id: MainClip
deny: top
}
camera {
type: 3D
angle: 45
pos: 0, 0, 1240
target: 0, 0, 0
Sprite { //WA: using frame buffer in place of on the fly background creation
source: background
pos: 0, 0, 0
hotspot: 0.5, 0.5
size: 1920, 1080 // Same Size as framebuffer above
}
clipSprite { //WA: BBox
pos: 0, 480, 1
standingHeight: 750
sittingHeight: 750
source: MainClip
scale: -1.0, 1.0, 1.0

}
Sprite { //iStripper Logo
pos: -880, 400, 1
scale: 0.25
rot: 0, 0, -90
hotspot: 0.5, 0.5
source: Logo
}
}



link to Scene
https://scenes.virtuastripper.net/GL_ES_TEST.zip

link to sample images
https://scenes.virtuastripper.net/SceneImages/GL_ES_TEST_TRUE.jpg
https://scenes.virtuastripper.net/SceneImages/GL_ES_TEST_FALSE.jpg
Wyldanimal
MODERATOR
Joined in Mar 2008
17120 post(s)