Advertisement
1m1m0
Apr 8th, 2025
12
0
Never
This is comment for paste Project Einstein: BHv5 Branch
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [ Welcome to Blackhole 5.1 Experimental Branch! ]
  2.  
  3. ----------
  4. Quick Desc
  5. ----------
  6.  
  7. Blackhole 5.1 is a beta version of future blackholes, especially for effecient and accurate gravities!
  8. This Blackhole version does not support fancy absorptions like previous Blackhole versions, but has significant improvements on gravitation.
  9.  
  10. Please do not remove any asset within the Blackhole as they will cause errors!
  11.  
  12. ---------------
  13. Live Parameters
  14. ---------------
  15.  
  16. `G_(gravity)` (1) = Gravitation constant, very sensitive to different values, try 0.1 incrementals.
  17. `UseCustomMass` (false) = Use custom mass as current mass has restrictions. this does not affect the ACTUAL mass, it's only pseudo.
  18. `CustomMass` (5236) = The custom mass (default is current mass, but it may not be if resized).
  19. `UseEinsteinian` (true) = Use Einstein's gravity field equation: (G*M/r^2)*(1-Rs/r) where Rs is the Schwarzschild radius, else use Newtonian: (Gm1m2/r^2).
  20. `OverridePhysics` (false) = If true, disregard the gravity formulas and simply use (`Magnitude`/r^2), more info on `Magnitude`
  21. `Magnitude` (1000000) = The gravitational strength. (also typed as 1e6).
  22. c_(light_speed) (300000000) = Speed of light (used for Schwarzschild radius in Einsteinian gravity, also typed as 3e8).
  23.  
  24. Schwarzschild radius = Event Horizon (the actual radius of blackhole), which the script uses to cancel gravity as r->0 outputs infinity.
  25.  
  26. ------------
  27. Math Parsing
  28. ------------
  29.  
  30. Follows mathematical syntax!
  31.  
  32. Non boolean parameters can be hard to type for precise and or large values like 300000000 or 12300, but they can be typed as exponentials or scientific notations:
  33. 1.23e4 = 1.23*(10^4) = 12300
  34.  
  35. It may output an error, this is how to use the Math Parsing system:
  36. Accepts PEDMAS or BEDMAS (Parentheses, Exponents, Division, Multiplication, Addition & Subtraction)
  37. a^4 = a*a*a*a, for roots: a^(1/2) = square root of a, whatever number in a^(1/n) is the n-th root.
  38. a/b, but b =/= 0.
  39. a*b...
  40. etc.
  41.  
  42. Example:
  43. (1e2)^(3/4)+5-6 = 30.62...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement