Git Product home page Git Product logo

Comments (4)

maluoi avatar maluoi commented on June 4, 2024 1

So there's two textures StereoKit uses in different conditions, it sounds likely that you're setting one, but not the other?

The "fallback" texture (globally set via Tex.SetLoadingFallback/tex_set_loading_fallback, and individually set by Tex.FallbackOverride/tex_set_fallback) shows when the texture is still loading, this is a grey grid by default, and indicates a successful, but busy state.

The "error" texture (globally set via Tex.SetErrorFallback/tex_set_error_fallback) shows when the texture has encountered some sort of issue at some point during loading, and it's a reddish grid texture.

*edit: Hang on, you totally said error fallback texture! Nevermind all that. I'll take a peek and make sure that's behaving as expected.

from stereokit.

maluoi avatar maluoi commented on June 4, 2024

Ah, just FYI, I have repro'd something that is probably this issue! No fix yet, but probably soon.

In this snippet, the first item should be the red failure texture, and the second should be black. However, both are black, and when reversed, both are the red failure texture.

Tex      failedTex;
Material failedMat;

Tex      failedFallbackTex;
Material failedFallbackMat;

public void Initialize()
{
	Log.Info("Expected texture load failure:");
	failedTex = Tex.FromFile("file_that_doesnt_exist.png");
	failedMat = Material.Default.Copy();
	failedMat[MatParamName.DiffuseTex] = failedTex;

	Log.Info("Expected texture load failure:");
	failedFallbackTex = Tex.FromFile("file_that_doesnt_exist.png");
	failedFallbackTex.FallbackOverride = Tex.Black;
	failedFallbackMat = Material.Default.Copy();
	failedFallbackMat[MatParamName.DiffuseTex] = failedFallbackTex;
}

public void Step()
{
	Mesh.Sphere.Draw(failedMat, Matrix.TS(-0.1f, 0, -0.5f, 0.1f));
	Mesh.Sphere.Draw(failedFallbackMat, Matrix.TS(0.1f, 0, -0.5f, 0.1f));
}

from stereokit.

maluoi avatar maluoi commented on June 4, 2024

Ah, no, actually that's expected here. Both textures will be a reference to the same failed asset in this case. Guess I'll keep digging.

from stereokit.

mvvvv avatar mvvvv commented on June 4, 2024

I only got the error texture when I use tex_create with the id (without an id it's the ugly side effect)

from stereokit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.