Checking if variable has changed inside class without loops?
Asked by
8 years ago Edited 8 years ago
So i have this Player class in module script:
07 | obj.eChanged = Instance.new( 'BindableEvent' ) |
08 | obj.Changed = obj.eChanged |
The problem is i want to detect change in class if i change any property, "Name" for example. Now you would say i could use SetFunctions() , example SetName() and then fire the bindable event inside class but i would like to detect change through metatables instead and let metamethod fire the Bindable Event but i ran into problems, heres example code:
01 | local ScriptService = game:GetService( 'ServerScriptService' ) |
02 | local Player = require(ScriptService:WaitForChild( 'Player' )) |
05 | local player = Player.new() |
08 | __newindex = function (tbl,key,val) |
09 | print ( 'Detected change on property and returning property' ..key) |
10 | tbl.Changed:Fire(key,val) |
13 | player.Changed.Event:connect( function (property, val) |
14 | print ( 'Detetected change on property: ' .. tostring (property).. ' ' ..val) |
Quick Points
1)If Player.Name is set to something other than nil already in player class and then i change player.Name to some other string the __newindex doesn't fire, why?
2)If Player.Name is set to nil by default in player class and then change the player.Name to string then it fires but only once and doesn't detect new change after that anymore.
Is it even possible to create this detect variable change in class system without loops , or do i have to fire the Change event myself through SetFunctions etc.. everytime i change property?