Search Unity

Unity PointCloud

Discussion in 'Scripting' started by petrasvestartas, Aug 14, 2019.

  1. petrasvestartas

    petrasvestartas

    Joined:
    Aug 14, 2019
    Posts:
    13
    Hi,

    Is there any Unity data-structure that represents point-cloud?

    I do not need to any display methods just a data-structure to store point-cloud?
    Obviously I can have point array, but is there something more that this?
     
  2. palex-nx

    palex-nx

    Joined:
    Jul 23, 2018
    Posts:
    1,748
    Point-cloud is just a points array. ParticleSystem is well capable of displaying such arrays. Also it may be easily saved to or loaded from disk. What more you'd like to get from it?
     
  3. petrasvestartas

    petrasvestartas

    Joined:
    Aug 14, 2019
    Posts:
    13
    I have a simple array of points with colors.

    I am new to Unity and would like to ask how can I simply display the particle system?
    How to add particle system to canvas?
     
  4. palex-nx

    palex-nx

    Joined:
    Jul 23, 2018
    Posts:
    1,748
  5. petrasvestartas

    petrasvestartas

    Joined:
    Aug 14, 2019
    Posts:
    13

    Would it be possible to get a full example for particle system display? I literally started learning unity 2 days ago.