I have units spawn every second, and after a certain condition I want to change their model size. I have no problems using catalog to increase the stats(Armor, HP) but when it comes to changing the model scale it doesn't work. I tried the Actor - Scale and the Model - ScaleMax, Model - ScaleMin, and they just don't seem to work. Is there a workaround trick for this?
And your trying to do with with the catalog event huh. Should still work just try the other scale field values that i listed above. You may want to check out the data fields on the actor with the "Raw Data View" on
Rollback Post to RevisionRollBack
Skype
KageNinpo = SN
My Libraries
DialogLeaderboard & TeamSort
My Projects
SPACEWAR Tribute
Infinite TD
And your trying to do with with the catalog event huh. Should still work just try the other scale field values that i listed above. You may want to check out the data fields on the actor with the "Raw Data View" on
The problem is that its giving me the message 'ErrorCatalogFieldNotWritten' which tells me that it can't find the field in the first place. And I actually got the value 'Scale' from the Raw Data View itself. I have tried CActorModel_Scale and Scale both and they don't work for me.
And your trying to do with with the catalog event huh. Should still work just try the other scale field values that i listed above. You may want to check out the data fields on the actor with the "Raw Data View" on
The problem is that its giving me the message 'ErrorCatalogFieldNotWritten' which tells me that it can't find the field in the first place. And I actually got the value 'Scale' from the Raw Data View itself. I have tried CActorModel_Scale and Scale both and they don't work for me.
----
Not all fields can be written by catalog functions. In particular most, if not all, actor fields are immutable.
I have units spawn every second, and after a certain condition I want to change their model size. I have no problems using catalog to increase the stats(Armor, HP) but when it comes to changing the model scale it doesn't work. I tried the Actor - Scale and the Model - ScaleMax, Model - ScaleMin, and they just don't seem to work. Is there a workaround trick for this?
@rkmx52: Go
Ive found that using the auto scale value doesnt always work. If the auto scale value does not take effect try the
Scaling:
x = 1
y = 1
z = 1
set them as
Scaling:
x = 1.5
y = 1.5
z = 1.5
@SouLCarveRR: Go
And your trying to do with with the catalog event huh. Should still work just try the other scale field values that i listed above. You may want to check out the data fields on the actor with the "Raw Data View" on
The problem is that its giving me the message 'ErrorCatalogFieldNotWritten' which tells me that it can't find the field in the first place. And I actually got the value 'Scale' from the Raw Data View itself. I have tried CActorModel_Scale and Scale both and they don't work for me.
Quote from rkmx52:
Quote from SouLCarveRR: Go
@SouLCarveRR: Go
And your trying to do with with the catalog event huh. Should still work just try the other scale field values that i listed above. You may want to check out the data fields on the actor with the "Raw Data View" on
The problem is that its giving me the message 'ErrorCatalogFieldNotWritten' which tells me that it can't find the field in the first place. And I actually got the value 'Scale' from the Raw Data View itself. I have tried CActorModel_Scale and Scale both and they don't work for me.
----
Not all fields can be written by catalog functions. In particular most, if not all, actor fields are immutable.
@RileyStarcraft: Go
Had a feeling so, thanks.