Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is it possible to GetChildren() and change their properties?

Asked by 10 years ago
1game.Workspace.InvisibleWalls:GetChildren().CanCollide = false
2game.Workspace.Doors:GetChildren().CanCollide = false
3game.Workspace.Doors:GetChildren().Transparency = 1
4 
5for _, v in ipairs(Workspace.InvisibleWalls:GetChildren()) do
6    if v:IsA("BasePart") then
7        v.CanCollide = false
8    end
9end

How can I get those top 3 into justone loop?

3 answers

Log in to vote
1
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
10 years ago

The other answers haven't addressed putting this into one (property changing) loop, and though in this situation it's perhaps not the best solution, it can be done.

Joining Two Lists

We have two lists:

1local walls = game.Workspace.InvisibleWalls:GetChildren()
2local doors = game.Workspace.Doors:GetChildren()

We can join them together to make a single list (though this requires a loop since Lua does not have this as a built in function)

1local parts = walls
2for _, door in pairs(doors) do
3    table.insert(parts, door)
4end

We can now have a single loop that will change the properties of objects in both lists (because we've turned it into just one)

We want all parts to have their CanCollide property set to false, and just those children of Doors to become invisible. It could look like this:

01for _, part in pairs(parts) do
02    if part:IsA("BasePart") then
03        -- If `part` is actually a Part as opposed to some other
04        -- object like a Script or Model
05        part.CanCollide = false
06        if part.Parent == workspace.Doors then
07            -- Is a door
08            part.Transparency = 1
09        end
10    end
11end



Or, Using a New Iterator

We can define our own ipairs like iterator for a for loop which will take two lists in and just iterate over both of them. This means we no longer need the initial joining loop, though we do need a more complicated construct..

01function joinobjs(one, two)
02    local i = 0
03    return function()
04        i = i + 1
05        if i <= #one then
06            return one[i]
07        elseif i <= #one + #two then
08            return two[i - #one]
09        end
10    end
11end

Now we just use the loop from the previous one with a different line for the for:

01for part in joinobjs(parts) do
02    if part:IsA("BasePart") then
03        -- If `part` is actually a Part as opposed to some other
04        -- object like a Script or Model
05        part.CanCollide = false
06        if part.Parent == workspace.Doors then
07            -- Is a door
08            part.Transparency = 1
09        end
10    end
11end
Ad
Log in to vote
3
Answered by
l0cky2013 135
10 years ago

As you may know, GetChildren returns a table of every child of the parent. In order to set all of the children individually you must iterate through the table.

Two Options

Option 1

1local children=Workspace.InvisibleWalls:GetChildren()
2for i=1, #children do
3if children[i]:IsA("BasePart") then --make sure we are editing a part!
4children[i].CanCollide=false
5end
6end

Option 2

1local children=Workspace.InvisibleWalls:GetChildren()
2for index, value in pairs(children) do
3if value:IsA("BasePart") then --make sure we are editing a part!
4value.CanCollide=false
5end
6end
0
do I have to use a for loop. I am sure they dont have to be so long and complicated NinjoOnline 1146 — 10y
0
You have to use some kind of loop to iterate over the contents of a Table, as you want to do. I'll write an answer that contains more typically used code for this. adark 5487 — 10y
Log in to vote
0
Answered by
adark 5487 Badge of Merit Moderation Voter Community Moderator
10 years ago

As promised:

1for _, v in ipairs(Workspace.InvisibleWalls:GetChildren()) do
2    if v:IsA("BasePart") then
3        v.CanCollide = false
4    end
5end

This, I should mention, is functionally identical to l0cky's "Option 2", just using current practices.

1
whats the IsA("BasePart") ???? NinjoOnline 1146 — 10y
1
`IsA` is a method of all Instances that checks whether the Instance is of a certain class or inherits from it. For example, a Part is a Part because it is, but it is also a BasePart because the WedgePart class inherits from the BasePart class. Checking for IsA("BasePart") check if the Object in question is a Part, WedgePart, or Truss in one method call. adark 5487 — 10y

Answer this question