Out of curiousity, do developers use spritesheets for 3D model's textures? Is that even possible to do with 3D textures? I hardly know anything about 3D, im just satiating my curiosity.
Spritesheets for 3D textures?
152 Views Asked by Ben Marshall At
1
There are 1 best solutions below
Related Questions in 3D
- Is there a way to import Collada files into Java?
- 3d mouse aim camera 3rd person vertical C#
- 3D B-Spline approximation
- MatLab 3-vector plot/mesh with colour-scale
- Matplotlib 3d: surface does not cover a line
- Draw a sphere on a billboard with world normal from a pointlist
- babylon skybox from hell
- Create histogram
- How to get accurate 3D depth from 2D screen mouse click for large scale object in OpenGL?
- Custom WhirlyGlobe Skin
- Converting 2D images to 3D
- How to setup camera to point at object
- Finding 3D coordinate of object
- MATLAB 3D sliding window on a volume
- How to check for collisions in ThreeJS?
Related Questions in TEXTURES
- Can linear filtering be used for an FBO blit of an MSAA texture to non-MSAA texture?
- Texture mapping consuming physical memory
- Quality not proper while rendering it via threejs r71
- SDL2_image rendering not working properly
- Cocos2D 2.x: Running CCWave action makes sprite disappear
- Creating a Texture2DArray and populate it with solid values
- Projecting a texture from plane to object with Unity
- Textured cube renders blank in DirectX
- Programmatically generate texture for WebGL in JavaScript
- Unable to render a texture on a quad
- OpenGl with C++ - Textures
- Random Line Appearing on Moving Texture Node
- Load multiple OBJ-files together with multple textures
- LibGDX "GwtApplication: exception: Couldn't load image 'a.jpg'
- Android OpenGL es 2.0 Can not reload textures on object.
Related Questions in SPRITE-SHEET
- Windows nuget package-PackageLoader-SpriteRender file Draw error
- Roku animation using animated sprites, how to create the tedious xml
- Stop Sprite Animation in cocos2d
- In Unity5 why some sprites in spritesheets are not visible in sprites but works fine in UI images?
- Set background color of SVG Material Design Icons
- C# XNA - How to draw animated texture with 2 Rectangle variables?
- Javascript Get Image Object From Sprite
- Using Sprite Sheets in Pygame
- Enemy audio and sprite sheet won't start/change when player is seen
- TypeError: createjs.Sprite is not a constructor
- BitBlt not updating WM_PAINT in Windows C++ API
- Crash when restarting a scene
- Spritesheets for 3D textures?
- Running grunt-spritesheet gives error "grunt.spritesheet requires a sprites and sheet property"
- How can I force gwt using my sprites?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, they do. Developers often pack all the textures for a whole model into a single texture rather than using multiple ones for each component of the model. It would be theoretically possible to put all the textures in a game into a single texture.
This is better because it reduces the number of texture bind operations, increasing performance.
They can do this because each point on each triangle of a model has its own texture coordinate. This means that they have total control over the "window" over the texture that each triangle is showing, therefore more than one thing can be on one texture by using texture coordinates to hide it when it is not needed.
EDIT: A bit more detail on texture coordinates:
Texture coordinates are specified per-vertex, with each vertex having its own coordinate. They are specified with components, U and V, both between 0 and 1 inclusive. These correspond to a point on the texture which that vertex is "anchored" to. This means that a triangle does not have to show the whole thing, and the aspect ratio of the triangle does not need to be the same as the aspect ratio of its window into the texture. See here.