Uninomicon

Documenting the dark corners of the Unity Engine.

User Tools

Site Tools


playerloop

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
playerloop [2021/03/07 20:49]
73.95.178.156 created
playerloop [2023/02/17 01:36] (current)
uninomiconadmin
Line 5: Line 5:
 ===== Sub Systems ===== ===== Sub Systems =====
  
-==== ''Initialization.PlayerUpdateTime'' ====+==== Initialization.InputSystemPlayerLoopRunnerInitializationSystem ==== 
 +This is an Editor-only call in the New Input System. It's used to flip the state buffers from the editor input buffers to the game view input buffers. This allows the editor and game to maintain two different input device sets. 
 + 
 +==== Initialization.PlayerUpdateTime ====
 Run when ''Time.time'' is updated. <sup>[//[[:wiki:tag:research-needed|research needed]]//]</sup> Run when ''Time.time'' is updated. <sup>[//[[:wiki:tag:research-needed|research needed]]//]</sup>
-See: 
   * [[https://issuetracker.unity3d.com/issues/playerupdatetime-playerloop-callback-no-longer-works-properly-after-time-dot-deltatime-fixes]]   * [[https://issuetracker.unity3d.com/issues/playerupdatetime-playerloop-callback-no-longer-works-properly-after-time-dot-deltatime-fixes]]
   * [[https://forum.unity.com/threads/time-deltatime-not-constant-vsync-camerafollow-and-jitter.430339/page-9#post-6402103]]   * [[https://forum.unity.com/threads/time-deltatime-not-constant-vsync-camerafollow-and-jitter.430339/page-9#post-6402103]]
 +
 +==== EarlyUpdate.UpdatePreloading  ====
 +Handles all scene loading. See [[scenemanager|SceneManager]].
 +
 +==== EarlyUpdate.UpdateInputManager  ====
 +"takes the data that platform specific code queried and transforms it to be directly consumable by the Input class. It does stuff like combine all controller inputs into gamepad 0, calculates axis weights according to what is specified in the input manager, etc. For the new input system, it dispatches those events to managed code." ((https://forum.unity.com/threads/time-deltatime-not-constant-vsync-camerafollow-and-jitter.430339/page-9#post-6402577))
 +
 +
playerloop.1615150175.txt.gz · Last modified: 2021/03/07 20:49 by 73.95.178.156