|
Post by ganadote on Mar 22, 2022 5:01:47 GMT
I'm trying to rotate the PT box, but can't seem to get it right.
Right now, this is the code for the image: image: {card_ptbox()}
I suspect it's because it runs a function (I'm guessing to determine what color box to use).
Looking at the tutorial, it seems it should be something like this:?
rotate("{card_ptbox()}", angle:90) == [[Image]]
Any help will be appreciated!
|
|
kolya
1/1 Squirrel
Posts: 73
Formerly Known As: fedosu
Color Alignment: Blue, Red, Green
|
Post by kolya on Mar 22, 2022 8:47:36 GMT
I'm pretty sure the line should read either:
image: { rotate_image(input: card_ptbox(), angle: 90) }
- or -
image: { rotate_image(card_ptbox(), angle: 90) }
|
|
|
Post by ganadote on Mar 22, 2022 18:35:32 GMT
That did it! Thank you so much! (it's image: { rotate_image(card_ptbox(), angle: 90) })
I must have been looking at an older version's manual since the example it gave had "rotate" instead of "rotate_image". Or maybe it's just syntaxing that I'm missing.
|
|