|
|
|
#1
|
||||
|
||||
|
3d delphi
Code:
Form1: TForm;
Viewport3D1: TViewport3D;
Layer3D1: TLayer3D;
FloatAnimation1: TFloatAnimation;
Layer3D2: TLayer3D;
FloatAnimation2: TFloatAnimation;
Code:
object FloatAnimation1: TFloatAnimation
Enabled = True
Duration = 1
Loop = True
PropertyName = 'RotationAngle.X'
StartValue = 0
StopValue = 180
OnProcess = FloatAnimation1Process
end
object FloatAnimation2: TFloatAnimation
Enabled = True
Duration = 1
Loop = True
PropertyName = 'RotationAngle.X'
StartValue = 180
StopValue = 360
OnProcess = FloatAnimation2Process
end
Code:
procedure TForm3.FloatAnimation1Process(Sender: TObject); begin Layer3D2.BringToFront; end; procedure TForm3.FloatAnimation2Process(Sender: TObject); begin Layer3D1.BringToFront; end; Last edited by hitman797; 21-08-2023 at 17:26. |
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (20-08-2023) | ||
| Sponsored Links |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM | BLACKFIRE69 | Conversion Tutorials | 0 | 15-11-2023 17:35 |
| Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 13:04 |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |