roblox studio 中的 border-radius 是什么?

What is the equivalent of border-radius in roblox studio?

我之前一直在使用 css,其中有一个 属性,即 border-radius,我可以用它独立地更改所有四个边的半径。现在我已经开始制作 roblox 游戏,我想对我的 GUI 元素进行四舍五入,但我发现只有一个插件是四舍五入的,它平等地四舍五入所有四个角,但我想独立地对它们进行四舍五入(不同角的单独舍入值)。我也搜索了 属性 面板,但没有找到。谁能告诉我如何以不同方式更改边框半径。

我想我已经使用了您用来使角变圆的插件,并且我研究了它是如何工作的。

我认为这里发生的是插件,而不是添加脚本,只是将按钮更改为圆形图像。

您必须找到一种方法来制作所有角都可以单独圆角的图像,可能需要使用外部程序。据我所知,实际上并没有办法用脚本来做到这一点。

希望对您有所帮助。

看看docs for UICorner

To use the UICorner UIComponent:

  1. Create a Frame / ImageLabel / ImageButton /TextLabel / TextButton / ViewpointFrame / etc.
  2. Insert a UICorner component as its child
  3. Adjust the round corner radius by changing the CornerRadius property

还有关于何时考虑使用 9 切片图像资产的说明。