Jump to content

AudiDJ

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by AudiDJ

  1. Thanks guys! I got it figured out!
  2. So I am very interested in the Project Saturn Tutorials put on by Jorn. However, I have run into a problem and cannot find a solution. I keep getting - error in Function 'Point'. argument #2 is 'string';'Entity' expected. -Here's my script: Script.player = "" --entity "Player" Script.rotationSpeed = 0.1 --float "Rotation Speed" Script.fireRate = 1.0 --float "Fire rate" Script.fireRateTimer = 0 Script.muzzleFlashLight = "" --entity "Muzzle Flash Light" Script.muzzleTime = 0.1 --float "muzzleTimer" Script.muzzleTimer = 0 function Script:UpdateWorld() self.entity:Point(self.player, 2, Time:GetSpeed() * self.rotationSpeed) self.fireRateTimer = self.fireRateTimer + (Time:GetSpeed()/100) self.muzzleTimer = self.muzzleTimer + (Time:GetSpeed()/100) if(self.fireRateTimer > self.fireRate) then self.muzzleFlashLight:Show() self.muzzleTimer = 0 end if(self.muzzleTimer > self.muzzleTime) then self.muzzleFlashLight:Hide() end end Thanks for taking a look. -Audi
  3. Thanks for the help. Im going to upgrade to a new laptop (making one myself).
  4. The version is HD Graphics 3000. Will that work? And what happens if it is lower than OpenGL 4? Will it still run it? etc.
  5. I have a question, but it maybe more of a joke for others. I have a Intel HD Graphics Family Card. Is there any hope that I can run Leadwerks?
×
×
  • Create New...