Git Product home page Git Product logo

urhosamples2019's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

urhosamples2019's Issues

Failed load the mesh from .obj/base64 string file.

Hi Team,
I am facing issue to load the mesh from .obj file. Is there any way to load the 3D drawing from .obj or base64 string.

I tried this sample (https://github.com/patrickabadi/UrhoCustomObj) it's not worked form me .
Getting below error.
Error (3624) / Urho3D: Failed to create vertex buffer
Error (3624) / Urho3D: Failed to create index buffer
Error (3624) / Urho3D: Attempted to get resource Techniques/NoTextureVCol.xml from outside the main thread

Thanks in advance.
Balakrishna.

Android BackButton Press Crashes UrhoSharp SamplyGame [Fixed]

I had modelled my game on SamplyGame, so was also getting hanging when pressing the Android Back Button.
To fix, in MainActivity:

   public override bool OnKeyDown([GeneratedEnum] Keycode keyCode, KeyEvent e)
    {
        if (keyCode == Keycode.Back)
        {               
            this.MoveTaskToBack(false);//causes app to go to back, and works when refocussed.
            return false; //this prevents OnBackPressed(), call.                            
        }
        return base.OnKeyDown(keyCode, e);
    }

Then, delete the Esc key condition in SamplyGame, as shown:

SamplyGame.Start()
{
Input.SubscribeToKeyDown(e =>
{
if (e.Key == Key.Esc) Exit();//<- this causes app crash/hang
}
}

The app is now sent to the background, and opens nicely when refocussed.

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.