MainUnit.dfm 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. object MainForm: TMainForm
  2. Left = 200
  3. Top = 153
  4. Cursor = crCross
  5. BorderIcons = [biSystemMenu, biMinimize]
  6. Caption = 'Visualization Example'
  7. ClientHeight = 300
  8. ClientWidth = 400
  9. Color = clBlack
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. KeyPreview = True
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnClose = FormClose
  19. OnCreate = FormCreate
  20. OnKeyDown = FormKeyDown
  21. OnMouseMove = FormMouseMove
  22. OnResize = FormResize
  23. PixelsPerInch = 96
  24. TextHeight = 13
  25. object MovementTimer: TTimer
  26. Enabled = False
  27. Interval = 3000
  28. OnTimer = MovementTimerTimer
  29. Left = 64
  30. Top = 16
  31. end
  32. object RenderTimer: TTimer
  33. Enabled = False
  34. Interval = 1
  35. OnTimer = RenderTimerTimer
  36. Left = 96
  37. Top = 16
  38. end
  39. object ColorTimer: TTimer
  40. Enabled = False
  41. Interval = 200
  42. OnTimer = ColorTimerTimer
  43. Left = 128
  44. Top = 16
  45. end
  46. object FPSTimer: TTimer
  47. Enabled = False
  48. OnTimer = FPSTimerTimer
  49. Left = 32
  50. Top = 16
  51. end
  52. end