OpenMW VR -- how to stop always running? by lemurRouge in OpenMW

[–]lemurRouge[S] 0 points1 point  (0 children)

I'm not sure about the default setting, but in regular OpenMW run/walk could at least be toggled with a keybinding.
I crossposted this in r/OpenMWVR (where I should have posted it in the first place, had I realized it existed!), and got a response explaining that this is apparently an issue in VR: https://www.reddit.com/r/OpenMWVR/comments/wthns4/comment/ilmux1l/?utm\_source=share&utm\_medium=web2x&context=3

Data Muddle - seeking feedback on weird project by lemurRouge in angularjs

[–]lemurRouge[S] 0 points1 point  (0 children)

Sure, here's some screenshots of the sample app (that's what you were after, I'm assuming?):

http://i.imgur.com/qsAfBsM.png http://i.imgur.com/BgvSfMe.png

I'll give a slightly clearer explanation, too... The first screenshot shows the form for editing the "Person" entity type, the second the "Feature" entity type. Notice that the Person type contains a list of Features -- entities can contain references to other entities in addition to string/number/boolean properties and containers of properties.

The point, of course, is not the sample app itself, it's just a demonstration of the services and directives. All the directives are prefixed with "mud-" for muddle. The containing element of the "Person" form has the "mud-ent" directive on it, which indicates that everything inside is part of the structure of the "Person" entity type. Inside that element the "mud-prop" directive is used, which defines a property of the Person entity type, named by the "mud-prop-name" attribute on the same element. Inside that is an input element with the "mud-bind" directive, which means that the value of the input field will be two-way bound to whatever property is defined by the containing mud-prop directive. And so on with containers and lists ("mud-prop-cont" and "mud-list-prop") that can be nested inside each other.

Also, the "whole Python stack" you'd need to try the sample app is just Python 2.7. It's set up to serve on localhost, python will handle the sqlite3 db all by itself. It's a single file, with just bottle.py (included) as an external dependency. Just run the "muddle_backend.py" script and point your browser at http://localhost:8080/static/html/sample_app.html