📌  相关文章
📜  godot sprite tiling - Go 编程语言 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:45:00.287000             🧑  作者: Mango

代码示例1
Using A TextureRect

    Create a TextureRect-node
    Assign your image as its texture
    Set expand to true
    Set strech_mode to STRETCH_TILE / 2
    Set rect_size to the dimensions you wish for

Using A Sprite

    Select your image in the "FileSystem"-Tab
    Switch over to the "Import"-Tab (next to the "Scene"-Tab)
    Set "Repeat" to "Enabled" and click "Reimport" (at the bottom)
    Create a Sprite-node
    Assign your image as its texture
    Set region_enabled to true
    Set region_rect to the dimensions you wish for