October 2016
Intermediate to advanced
452 pages
9h 47m
English
When a designer changes the properties of an Actor placed in the level, it is often important to show any visual results of that change immediately rather than just when the level is simulated or played.
When changes are made using the Details panels, there's a special event that the editor emits called PostEditChangeProperty, which gives the class instance a chance to respond to the property being edited.
This recipe shows you how to handle PostEditChangeProperty for immediate in-editor feedback.
Actor called APostEditChangePropertyActor based on StaticMeshActor.UPROPERTY to the class:UPROPERTY(EditAnywhere) bool ShowStaticMesh;
Read now
Unlock full access