Bug with Godot (fixed)

Поділитися
Вставка
  • Опубліковано 27 лис 2024

КОМЕНТАРІ • 4

  • @chris_gamedev
    @chris_gamedev 4 роки тому

    ohh, have you made and bug report on github ? what version are you using??

  • @chris_gamedev
    @chris_gamedev 4 роки тому

    strange, im using 3.2 rc3 and i can't recreate this. well im doing it like this
    extends Node2D
    var test : Array
    var second : Array
    func _ready():
    test.append("hello")
    test.append("world")
    only the test array is a size of 2, the second is of size 0

    • @AmericanExtract
      @AmericanExtract  4 роки тому +1

      After creating an issue on github I was informed that It was apparently fixed in 3.2, so it's no longer an issue! Rejoice!

  • @chris_gamedev
    @chris_gamedev 4 роки тому

    it should work without but have you tried
    var players : Array = []
    var viewports : Array = []