16

I'm trying to make my text stand up while still following this bezier circle.

I know it looks like a complete utter mess, but all I want to know is how to make the text stand up (Like on the clock image) instead of being "skewed"

Numbers standing up

What I'm getting

3 Answers3

15

This relatively automated method places them automatically.

enter image description here

Create a simple plane object. In Edit Mode move about the Y axis the distance of your clock radius.

Aligned with the plane object center (not the geometry) add an empty object and rotate it $-30º$ about the Z axis.

enter image description here

Now add an Array modifier to the plane, set to Fixed Count and 12 iterations. Turn off all offsets and activate Object Offset pointing to the previously created empty object.

enter image description here

Create a bunch of numbers as separate (text or curve) objects. Center the text both vertically and horizontally for easier placement. Add them all to new collection (named "Numbers") containing those numbers exclusively.

Have in mind that the order in which you create your number objects is relevant. Particle sorting is as far as I can tell most likely obtained from chronological creation order, so the sequence you create your text objects in will directly influence the way numbers will be placed by the particle system, so when creating new objects or duplicating existing ones be sure to follow 1>2>3>...>12.

Now add a particle system to the plane set to Emitter, reduce the count to exactly $12$, turn on Use Modifiers, disable Random Order and Even Distribution and set the Particles/Face count to $1$.

Activate Rotation and under it set Orientation Axis to Object Y.

enter image description here

Under the Render panel pick Collection as Render As type and set the numbers collection as Instance Collection. Make sure Whole Collection, Pick Random and Global Coordinates are all off, and under Extra enable Unborn and Died.

enter image description here

Optionally turn off both Show Emitter and Render Emitter in the Viewport and Render panels.

This should ensure numbers are correctly placed at the right angles automatically for any arbitrary number of items without rotating them individually.

enter image description here

Duarte Farrajota Ramos
  • 59,425
  • 39
  • 130
  • 187
4

You can't, because characters aren't treated as individual objects.
Just for fun, you can get there using instancing.

  1. Add an array modifier to a single vertex
  2. Add a curve modifier so it follows a circle

EDIT: As @RobinBetts kindly pointed out, you can simply use a circle with 12 vertices instead of steps 1. and 2.

  1. Use instancing to duplicate the character on each vertex

Now you can make the instances real and change the numbers/characters...

enter image description here

jachym michal
  • 31,744
  • 5
  • 55
  • 115
3

You can try this way:

  • Create a 12-sided circle mesh
  • Move the 3D cursor to each point of the circle
  • Select the number and move it to the cursor

You need to make sure the origin is in the centre of each number, which you can do with Object > Set Origin > Origin to 3D Cursor.

enter image description here


You can use Vertex Snapping to speed it up too (thanks @Jachym!):

enter image description here

This way just grab your numbers (with centres in the middle) and move them to the vertices of the circle.

  • 2
    Hello :). You can also use Vertex snapping to speed it up. But in the end, you'll still have to add different spacing for different numbers. – jachym michal Oct 13 '20 at 09:31
  • 1
    @JachymMichal If the centres are right, it shouldn't be an issue of spacing? As you can see, the 1 and 2 have a larger gap than the 11 and 12, but the centres should be evenly distributed – marcellothearcane Oct 13 '20 at 09:33
  • 2
    You're right, it works well enough :). Mathematical center is not optical center, but this isn't Typography SE :). – jachym michal Oct 13 '20 at 09:58