Jump to content

wackey node orientation


amankd

Recommended Posts

okay this is a bit weird and a first in all my mods... the node stack top is at a totally weird orientation... and i dont know how to fix...

 

config:

// --- node definitions ---
node_stack_bottom = 0.0, -0.1, -0.5, 0.0, 1.0, 1.0
node_attach = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0

 

Link to comment
Share on other sites

10 minutes ago, amankd said:

okay this is a bit weird and a first in all my mods... the node stack top is at a totally weird orientation... and i dont know how to fix...

 

config:


// --- node definitions ---
node_stack_bottom = 0.0, -0.1, -0.5, 0.0, 1.0, 1.0
node_attach = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0

 

Your node definition is causing it to be like that -- it has configured itself exactly as your node definition has told it to.

The nodes are defined as posX, posY, posZ, rotX, rotY, rotZ, size. -- 7 parameters; you only have 6 listed.

You are missing the size parameter, rather it appears you put that into the rotZ param incorrectly (unless you want this node rotated on both X and Z axis?)

Try this out:

node_stack_bottom = 0.0, -0.1, -0.5, 0.0, 1.0, 0.0, 1.0  (guessing on orientation, but this looks like the fixed form of your attach node above)

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...