of     1   

FlamedSkull
#141299279Wednesday, July 23, 2014 7:30 PM GMT

How can I print out the properties of an object using a simple function?
C_Sharper
#141299580Wednesday, July 23, 2014 7:33 PM GMT

Delay(1,function()) local block = Instance.new("Part") print(block.BrickColor) print(block.Transparency) print(block.CanCollide) --MAKE TEH PROPERTIES end Don't ask why I delayed it.. :3
C_Sharper
#141299856Wednesday, July 23, 2014 7:37 PM GMT

Oops, I did that wrong. Well, you get the picture.
FlamedSkull
#141335400Thursday, July 24, 2014 1:44 AM GMT

Bump. Not what I am looking for...
Notunknown99
#141335459Thursday, July 24, 2014 1:44 AM GMT

Nope.
blockoo
#141336047Thursday, July 24, 2014 1:50 AM GMT

There really is no way to do this. The only alternative is to make a table containing the string form of every possible property, then use a loop to search the object for every property in the table. This is the very reason I have stopped working on my script that saves Instances with DataStore :P
Notunknown99
#141336190Thursday, July 24, 2014 1:51 AM GMT

@blockoo: I have one of those (I used IsA on a table of quite a few instances. IT WAS HORRIBLE. Just see for yourself: http://www.roblox.com/Object-Converter-Now-with-Instances-item?id=164043356)
Zawie
#141336357Thursday, July 24, 2014 1:53 AM GMT

Like this: (I think this is what you want) local function PrintProperties(Brick) Prop = {Transparency,CanCollide, Stuffs"} x = 1 repeat print(Brick.Prop[x]) x= x+1 wait(0.01) until x >= #Props
blockoo
#141337141Thursday, July 24, 2014 2:01 AM GMT

@Notunknown This is what I had until I quit, I tried saving typing and time by creating a table of every property and the code snippet needed to create it: objects = {"inst0 = game.ReplicatedStorage"} currentObjNum = 1 properties = {{"AttachmentForward", ".AttachmentForward = Vector3.new()"}, {"AttachmentPos", ".AttachmentForward = Vector3.new()"}, {"AttachmentRight", ".AttachmentRight = Vector3.new()"}, {"AttachmentUp", ".AttachmentUp = Vector3.new()"}, {"AnimationId", ".AnimationId = "}, {"Name", ".Name = ''"}, {"Offset", ".Offset = Vector3.new()"}, {"Scale", ".Scale = Vector3.new()"}, {"VertexColor", ".VertexColor = Vector3.new()"}, {"angularvelocity", ".angularvelocity = Vector3.new()"}, {"maxTorque", ".maxTorque = Vector3.new()"}, {"P", ".P = "}, {"force", ".force = Vector3.new()"}, {"D", ".D = "}, {"position", ".position = Vector3.new()"}, {"location", ".location = Vector3.new()"}, {"maxForce", ".maxForce = Vector3.new()"}, {"velocity", ".velocity = Vector3.new()"}, {"HeadColor", ".HeadColor = BrickColor.new()"}, {"LeftArmColor", ".LeftArmColor = BrickColor.new()"}, {"LeftLegColor", ".LeftLegColor = BrickColor.new()"}, {"RightArmColor", ".RightArmColor = BrickColor.new()"}, {"RightLegColor", ".RightLegColor = BrickColor.new()"}, {"TorsoColor", ".TorsoColor = BrickColor.new()"}, {"MaxActivationDistance", ".MaxActivationDistance = "}, {"BrickColor", ".BrickColor = BrickColor.new()"}, {"Material", ".Material = ''"}, {"Reflectance", ".Reflectance = "}, {"Transparency", ".Transparency = "}, {"Position", ".Position = Vector3.new()"}, {"Rotation", ".Rotation = Vector3.new()"}, {"RotVelocity", ".RotVelocity = Vector3.new()"}, {"Velocity", ".Velocity = Vector3.new()"}, {"Anchored", ".Anchored = "}, {"CanCollide", ".CanCollide = "}, {"Locked", ".Locked = "}, {"Elasticity", ".Elasticity = "}, {"Friction", ".Friction = "}, {"Size", ".Size = Vector3.new()"}, {"CFrame", ".CFrame = CFrame.new()"}, } function stringify(obj, num, parentNum) local instNum = "inst"..num local objProperties = {} local objLine = instNum.." = Instance.new('"..obj.ClassName.."') "..instNum..".Parent = inst"..parentNum.." " local input = for i, v in pairs(properties) do local success = pcall(function() local test = obj[v[1]] end) if (success == true) then if (v[2]:find("Vector3.new()") or v{2]:find("CFrame.new()") or v[2]:find("BrickColor.new") or v[2]:find("Color3.new")) then objLine = objLine..v[2]:sub(1, -2)..tostring(obj[v[1]])..") " elseif (v[2]:find("''")) then objLine = objLine..v[2]:sub(1, -2)..obj[v[1]].."' " else objLine = objLine..v[2]..tostring(obj[v[1]]) end end for i, v in pairs(objProperties) do end if (obj:IsA("Hat") or obj:IsA("Accoutrement")) then table.insert(objects, instNum.." = Instance.new('"..obj.ClassName.."') "..instParent..instNum..".AttachmentForward = Vector3.new("..tostring(obj.AttachmentForward)..") "..instNum..".AttachmentPos = Vector3.new("..tostring(obj.AttachmentPos)..") "..instNum..".AttachmentRight = Vector3.new("..tostring(obj.AttachmentRight)..") "..instNum..".AttachmentUp = Vector3.new("..tostring(obj.AttachmentUp)..") "..instNum..".Name = '"..obj.Name.."'") elseif (obj:IsA("Animation")) then table.insert(objects, instNum.." = Instance.new('Animation') "..instParent..instNum..".AnimationId = '"..obj.AnimationId.."' "..instNum..".Name = '"..obj.Name.."'") elseif (obj:IsA("BodyColors")) then table.insert(objects, instNum.." = Instance.new('BodyColors') "..instParent..instNum..".HeadColor = BrickColor.new("..obj.HeadColor.Number..") "..instNum..".LeftArmColor = BrickColor.new("..obj.LeftArmColor.Number..") "..instNum..".LeftLegColor = BrickColor.new("..obj.LeftLegColor.Number..") "..instNum..".RightArmColor = BrickColor.new("..obj.RightArmColor.Number..") "..instNum..".RightLegColor = BrickColor.new("..obj.RightLegColor.Number..") "..instNum..".TorsoColor = BrickColor.new("..obj.TorsoColor.Number..") "..instNum..".Name = '"..obj.Name.."'") elseif (obj:IsA("BlockMesh") or obj:IsA("CylinderMesh")) then table.insert(objects, instNum.." = Instance.new('"..obj.ClassName.."') "..instParent..instNum..".Offset = Vector3.new("..tostring(obj.Offset)..") "..instNum..".Scale = Vector3.new("..tostring(obj.Scale)..") "..instNum..".VertexColor = Vector3.new("..tostring(obj.VertexColor)..") "..instNum..".Name = '"..obj.Name.."'") elseif (obj:IsA("BodyAngularVelocity")) then table.insert(objects, instNum.." = Instance.new('BodyAngularVelocity') "..instParent..instNum..".angularvelocity = Vector3.new("..tostring(obj.angularvelocity)..") "..instNum..".maxTorque = Vector3.new("..tostring(obj.maxTorque)..") "..instNum..".P = "..obj.P.." "..instNum..".Name = '"..obj.Name.."'") elseif (obj:IsA("BodyForce")) then table.insert(objects, instNum.." = Instance.new('BodyForce') "..instParent..instNum..".force = Vector3.new("..tostring(obj.force)..") "..instNum..".Name = '"..obj.Name.."'") elseif (obj:IsA("BodyGyro")) then table.insert(objects, instNum.." = Instance.new('BodyGyro') end end end end function prepareDescendants(item, itemNum) for i, v in pairs(item:GetChildren()) do currentObjNum = currentObjNum + 1 stringify(v, currentObjNum, itemNum) if (#v:GetChildren() > 0) then prepareDescendants(v, currentObjNum) end end end _G.StoreInstance = function(instance) stringify(instance, 1, 0) prepareDescendants(instance, 1) end _G.LoadInstance = function(request)
Notunknown99
#141337373Thursday, July 24, 2014 2:03 AM GMT

@Blockoo: I prefer my table of instance-types and iterating over it, using IsA on the name and if so adding the returned table of properties to the properties to be saved. Loading is then extremely simple.
blockoo
#141337610Thursday, July 24, 2014 2:05 AM GMT

Yeah, I ran into an issue with objects having some of the same properties as other objects. I could get around it but I'm too lazy lol. Right now I've moved on to figuring out how to "reflect" rays.
Notunknown99
#141337797Thursday, July 24, 2014 2:07 AM GMT

Like a mirror? http://en.wikipedia.org/wiki/Specular_reflection Try that.
blockoo
#141338111Thursday, July 24, 2014 2:10 AM GMT

Except we're working with 3D space, and ROBLOX's semi-strange angle system where the angle components don't match up with position components. I figured out the angles of incidence on all axes, and now I'm stuck on figuring out how to translate that angle to the opposite side of the axis of symmetry.
Notunknown99
#141338264Thursday, July 24, 2014 2:12 AM GMT

That should work for n-dimensional space.
blockoo
#141338465Thursday, July 24, 2014 2:14 AM GMT

I know how to get the angles I need to reflect it at, but the problem I'm having is how to translate that to a usable direction in 3D space (especially considering I'm trying to make this work for any orientation of a surface)
Notunknown99
#141338738Thursday, July 24, 2014 2:17 AM GMT

d_s = 2*d_n*d_n:Dot(d_i) - d_i Where d_i = the incident direction, d_n = the surface normal direction and d_s = the reflected angle direction. According to the article, anyway.
blockoo
#141338856Thursday, July 24, 2014 2:18 AM GMT

Lol, I saw that and it made my brain hurt. I've been out of school for too long and it's late. I'll try working with it tomorrow.

    of     1