Questions tagged [scenegraph]

A scene graph is a general data structure commonly used by vector-based graphics editing applications and modern computer games, which arranges the logical and often (but not necessarily) spatial representation of a graphical scene.

Scene graphs are data structures used to hierarchically organize and manage the contents of spatially oriented scene data.A scene graph is a collection of nodes in a graph or tree structure. A tree node (in the overall tree structure of the scene graph) may have many children but often only a single parent, with the effect of a parent applied to all its child nodes; an operation performed on a group automatically propagates its effect to all of its members. In many programs, associating a geometrical transformation matrix (see also transformation and matrix) at each group level and concatenating such matrices together is an efficient and natural way to process such operations. A common feature, for instance, is the ability to group related shapes/objects into a compound object that can then be moved, transformed, selected, etc. as easily as a single object.

Examples of such programs include Acrobat 3D, Adobe Illustrator, AutoCAD, CorelDRAW, OpenSceneGraph, OpenSG, VRML97, X3D, Hoops and Open Inventor.

179 questions
0
votes
0 answers

Listener to move to other screen in roku

I want to listen for event when the item is selected from the PosterGrid here is my XML element posterGrid
0
votes
0 answers

CPU Info Not Showing On Roku BrightScript Profiler Tool

I need to check CPU usage(CPU consuption) on Roku brightScript Profiler Tool. Once i clcik on cpu tab on tool, its showing No data matching found every time. I have enterd all manifest entry as per…
0
votes
0 answers

Why Roku Player Unable to Read TimedMetaData from Stream URL

I hope you are doing well finds this post. I am working on a Roku App which have sports HLS streaming. I am unable to read timedMetaData from the stream URL for some streams URL. Rest of the stream URL working. But when we use the same stream HLS…
Vijay Kumar
  • 141
  • 1
  • 13
0
votes
1 answer

Transformation Hierarchy (Problem with modelling transformation of parent on children), OpenGL, LWJGL 3

I am currently building a scene graph in OpenGL and I trying to model parent transformations on their children, but it does not seem to be working. :( My main problem is that the child's rotation does not follow the parent's rotation correctly. The…
Dstarred
  • 321
  • 2
  • 10
0
votes
0 answers

Creating a scene graph / hierarchy using an entity component system

I do not seem to find any good resources on how to organize entities from an ecs into a scene graph / hierarchical structure e.g. for a 3D editor. Im talking about something like: -root -player -left-arm -right-arm -tree …
Symlink
  • 383
  • 2
  • 12
0
votes
2 answers

JavaFX make Node partially mouseTransparent

If I have two Nodes stacked on top of each other and overlapping, how can I make the Node on top mouseTransparent (so that the bottom Node can react to MouseEvents) but also have the Node on top react to some MouseEvents like onMouseEntered? For…
Zyxl
  • 93
  • 7
0
votes
1 answer

Roku Brightscript, Render Thread to Task Thread transfer

How can we pass Associative Array or SGNode to task thread from render thread without losing the values? In the following example, I am adding the request in a queue in the render thread but when in the go function, which is in the task thread, I…
0
votes
1 answer

How do you adjust overhang.title's position in SceneGraph in Roku

I set overhang in my Roku App, but the position of the overhang title seems too high. I want to adjust it but I could not find an offset option like logoBaselineOffset or leftDividerVertOffset. Does anybody meet a similar problem and how do you…
echo
  • 1,244
  • 1
  • 16
  • 40
0
votes
1 answer

Json parsing with Apostrophes (Single Quote) in BrightScript

I use ParseJson() to parse JSON information retrieved from a server. Everything works OK except some value includes "’;" which is actually a single quote character. I want to know if there is a better way to parse JSON to convert information…
echo
  • 1,244
  • 1
  • 16
  • 40
0
votes
1 answer

Roku development: Problem of SceneGraph Development Extensions

I tried to use ComponentController to navigate from Main Scene to ViewA, then I found two problem The button in ViewA does not respond to remote events. (button.setFocus(true)) The font:LargeBoldSystemFont/font:MediumBoldSystemFont does not work…
echo
  • 1,244
  • 1
  • 16
  • 40
0
votes
1 answer

onHover not working with scenegraph in deck.gl

my code - layer new ScenegraphLayer({ id:"22", scenegraph: "glb/22.glb", data: dataArray.glb22, getPosition: d => [d.geometry.coordinates[0], d.geometry.coordinates[1], 0] , sizeMinPixels: 1, sizeMaxPixels: 10, …
kim young chan
  • 300
  • 1
  • 13
0
votes
2 answers

How to post xml with roUrlTransfer in a Roku App?

My app needs the "rendezvous" registration, so I need to post XML data to our server. I know roUrlTransfer is used for Http/Https request in Roku App. I also saw some simple examples, but I haven't figured out how to send XML data to a…
echo
  • 1,244
  • 1
  • 16
  • 40
0
votes
1 answer

It's possible to set timer on poster node and other nodes in Roku..?

I am working on a Roku app using scene graph component.I am trying to set timer node on poster node in Roku app playing on TV APP..i want to set timer on Poster Node And Other Nodes it is possible in Roku..? pls help me..
Raj G
  • 73
  • 8
0
votes
2 answers

Roku: How to change Poster-Grid Captions Font size

Bright script using scene graph. i want to change size of default font without Font node. I used "SmallestBoldSystemFont" font. It appears large font then actual require size.
Raj G
  • 73
  • 8
0
votes
2 answers

Change Custom View from Thumbnail to text - Roku Scenegraph Developer Extension SGDEX

Currently the Customer template in Roku Scenegraph just shows the thumbnail from the grid feed. I would like to use the full description from the grid feed, instead. How would I go about changing this? Parse from GridHandler. (Notice the…
MarlonC
  • 67
  • 6