Hi,
could someone please explain me how I can use the command HideEntity and ShowEntity with Objects in a List.
I have... (stripped down)
in the main loop I want to do a Hide and Show before rendering.
I have tried for eachin, nada and so on...HideEntity(spClients._sphere) nada...
Must I go through ALL the objects? or is there a way to say 'all objects in list' ?
could someone please explain me how I can use the command HideEntity and ShowEntity with Objects in a List.
I have... (stripped down)
If KeyDown(KEY_NUMADD) For Local i:Int = 0 To 99 spClients:TClient = New TClient spClients.setOnRadius(weniversum.radius) spCount = spClients.clientsCount() Next End If Type TClient Global list:TList = New TList Method New() list.AddLast(Self) _sphere = CreateSphere(4) End Method End Type
in the main loop I want to do a Hide and Show before rendering.
I have tried for eachin, nada and so on...HideEntity(spClients._sphere) nada...
Must I go through ALL the objects? or is there a way to say 'all objects in list' ?