Arrays in Verse - UEFN Programming Tutorial

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

КОМЕНТАРІ • 15

  • @thewanderinghobo64
    @thewanderinghobo64 Рік тому

    Omg thank you, this info is spread all around the docs in a weird way. Life saver!

  • @chinonoob3219
    @chinonoob3219 Рік тому +2

    This is gold my friend, you are doing a really good job

  • @HelloBard
    @HelloBard Рік тому +1

    Cheers for a great tutorial!

  • @codingidiot6754
    @codingidiot6754 10 місяців тому +6

    fix your fire alarm

    • @kennethready
      @kennethready 9 місяців тому

      haha, i was looking around my room for the fire alarm for a couple seconds when i heard that in the video

  • @NotV3rySup
    @NotV3rySup Рік тому

    Great stuff! Are you planning on making tutorials about menu UI? It's been such a confusing topic around the community and I think we still don't have a good tutorial on it.

    • @piequalsthree3
      @piequalsthree3  Рік тому +1

      As in changing the default UI? (Materials, weaopn slots, hp, etc.) O r a custom menu UI/

    • @NotV3rySup
      @NotV3rySup Рік тому

      @@piequalsthree3 Custom menu, like a main menu and such (other UIs with button interactions too)

  • @ImWoki
    @ImWoki 9 місяців тому

    clicked for the tutorial, stayed for the ASMR 😂😂

  • @vilmavaitonyte2451
    @vilmavaitonyte2451 6 місяців тому

    How can i have arrays with multiple types/arrays within arrays?

  • @MattFury
    @MattFury 9 місяців тому

    Verse is confusing me a bit. So, I want to be able to have an array of Players/Agents and insert an agent into the array. Do Verse functions pass by value or reference? Trying to create a function that will take in ([]agent, agent) and insert the agent into the []agent. Is this even possible? I'm coming from a Java and Python background, so this is throwing me off a bit.

  • @This_is_Elzed
    @This_is_Elzed Рік тому

    Hi,
    can i add multiple values in a multidimensionnal array in verse ?
    I need to stock players in an array but with a specific value that is not an agent.
    Just like : [ [ Agent1, Value1 ], [ Agent2, Value2 ], [ Agent3, Value3 ] ] ?
    Is it possible ?

    • @ChrixB
      @ChrixB Рік тому

      Try to do the same, i.e. how to insert in a multiple array dimension? is it something like that :
      if(NewArray := MyArray.insert[Row][Column]) # How to add the value ?