Summary
	
    Instantiates a Prefab and a applies a transform to all the entites.
    
		
	Syntax
	public static List<Entity> Instantiate(this Prefab prefab, Vector3 translation, Vector3 rotationEulerAngles, Vector3 scale)
	Parameters
	
		
			
				
					
						| Name | Type | Description | 
				
					
						| prefab | Prefab | The Prefabto instantiate. | 
					
						| translation | Vector3 | The Vector3to translate the entities by. | 
					
						| rotationEulerAngles | Vector3 | The X, Y and Z rotations in euler angles to rotate the entities by. | 
					
						| scale | Vector3 | The Vector3to scale the entities by. | 
			
		 
	 	
	Return Value
	
		
			
				
					
						| Type | Description | 
				
				
					| List<Entity> | The instatiated and translated entities. |