Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate

Cubemap for calibrate skybox

Author: 
blogdron
Wednesday, March 6, 2019 - 08:41
Art Type: 
Texture
Tags: 
cubemap
dds
tga
License(s): 
CC0
Collections: 
Share Icons: 
Preview: 
Preview

This cubic map will help you determine if you are drawing it correctly. 512x512 cubetable single dds (6 layers cube texture)  + tga 6 images

I upload the new archive
I divided the texture into six layers if this is more convenient for you and added a mention of the DDS format in the description file

Copyright/Attribution Notice: 
blogdron :)
File(s): 
cubetable512.zip cubetable512.zip 246.4 Kb [205 download(s)]
  • Log in or register to post comments

Comments

MedicineStorm
joined 12 years 9 months ago
03/06/2019 - 09:27
MedicineStorm's picture

Isn't this more of a texture?

  • Log in or register to post comments
blogdron
joined 6 years 3 months ago
03/06/2019 - 09:44
blogdron's picture

its dds texture have 6 layers. example https://www.youtube.com/watch?v=E9-A0nsO7gk  center cube   you need dds image editor like GIMP. Although now I will try to divide into 6 separate images in addition and reload if it is possible after 30 minutes.

  • Log in or register to post comments
MedicineStorm
joined 12 years 9 months ago
03/06/2019 - 10:01
MedicineStorm's picture

I don't think there is any need to separate the images or change the file format. I was wondering why it is categorized as "2D art" instead of "Texture".

  • Log in or register to post comments
blogdron
joined 6 years 3 months ago
03/06/2019 - 10:06
blogdron's picture

ups )))i fix it

 

P.S.: Although here you can philosophize because any texture is also 2D art)))))

  • Log in or register to post comments
MedicineStorm
joined 12 years 9 months ago
03/06/2019 - 10:21
MedicineStorm's picture

Indeed. Why not only have a "2D art" category since even 3D models are represented on a 2D screen and therefore 2D. Even audio files are 1D waveforms stretched onto an amplitude axis and therefore 2D. :)

Thanks for the update. Philosophically, categories are pointless. Categorically, proper organization is important. :P

Interesting calibration tool. Seems useful. Thanks for sharing it.

  • Log in or register to post comments
blogdron
joined 6 years 3 months ago
03/06/2019 - 10:26
blogdron's picture

:D

  • Log in or register to post comments
unclouded
joined 7 years 5 months ago
07/16/2022 - 16:56

Thank you, this is really useful.  What is the intended orientation of the floor and ceiling?  If I am looking towards  -ve Z and -ve X is to my left and then I look up to +Y, am I supposed to see A,B, C, D clockwise around the corners?

  • Log in or register to post comments
blogdron
joined 6 years 3 months ago
07/17/2022 - 07:22
blogdron's picture

https://github.com/orangeduck/Corange/pull/33

https://www.youtube.com/watch?v=E9-A0nsO7gk

This is necessary if you are rendering a cube map from different separate images in the code, in the code you set where in what orientation and what will happen. You check on this cube map. It doesn't really show anything, it just needs to look correct to the eye. It was useful for me when I did not understand where I had shifted the texture coordinates incorrectly, I saw on which side it was wrong and corrected the code. Something like this

  • Log in or register to post comments
unclouded
joined 7 years 5 months ago
07/19/2022 - 00:30

I think what I'm finding is that skybox textures don't seem to have a standard form.  In the attached image the dim red blob is at x=-7, the bright green at y=+7 and the dull blue at z=-7 (world).  I am not flipping the images on Y as I load them yet "cloudy skyboxes" on OGA work once the "up" and "down" textures were rotated 90° left and "park skyboxes" all work without any changes.  I don't think I'm doing anything funky in the shaders:

#version 150 core
uniform mat4  mvp_matrix;
in vec3  position;
out mediump vec3  texture_ordinates;
void  main ()
{
  texture_ordinates = normalize (position.xyz);
  gl_Position = mvp_matrix * vec4 (position, 1.0);
  gl_Position = gl_Position.xyww;
}

#version 150 core
#extension GL_NV_shadow_samplers_cube : enable
precision highp float;
uniform samplerCube  texture;   // The skybox texture
in mediump vec3  texture_ordinates;    // From the vertex shader
out vec4  color;
void  main ()
{
  color = textureCube (texture, texture_ordinates);
}

Attachments: 
  • Log in or register to post comments